<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Stop Dollar Sign Expansion in the script (Escape Character ??? ) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169171#M40073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh my god, it was that simple, eh -- why didn't I think of that?! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/laugh.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LET variable = '= only({$&amp;lt;Sales={"' &amp;amp; '$' &amp;amp; '(#=max(Sales))"}&amp;gt;} Town)';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hooray!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2012 07:59:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-09-18T07:59:59Z</dc:date>
    <item>
      <title>Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169162#M40064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there !&lt;/P&gt;&lt;P&gt;I have a problem in my script with the dollar sign expansion (eg. $(...))&lt;/P&gt;&lt;P&gt;To be quick, would like to know if there exists a way to stop the dollar sign expansion in my script. Is there an escape character ?&lt;/P&gt;&lt;P&gt;I explain :&lt;/P&gt;&lt;P&gt;let A = $(Today())&lt;/P&gt;&lt;P&gt;will evaluate the function so that A = 04/03/2010&lt;/P&gt;&lt;P&gt;I would like A to kepp the text : A = $(Today())&lt;/P&gt;&lt;P&gt;I tried the following, but It doesnt work :&lt;/P&gt;&lt;P&gt;let A = '$(Today())' --&amp;gt; just gives '04/03/2010'&lt;/P&gt;&lt;P&gt;let A = $$(Today()) --&amp;gt; just gives $04/03/2010&lt;/P&gt;&lt;P&gt;let A = \$(Today()) --&amp;gt; just gives \04/03/2010&lt;/P&gt;&lt;P&gt;Is there a solution ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 17:06:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169162#M40064</guid>
      <dc:creator />
      <dc:date>2010-03-04T17:06:56Z</dc:date>
    </item>
    <item>
      <title>Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169163#M40065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stephane,&lt;/P&gt;&lt;P&gt;There is indeed. Use SET instead. SETting a variable means you store something in the variable. Then, you can expand it or not. So&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;SET A = $(Today())&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;and then, in a textbox for example setting just &lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;=A&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;will show you "$(Today())" (without quotes). &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;On the other hand, LET evaluates the expression and then assign it to a variable, which is useful too, but not what you are looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 17:25:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169163#M40065</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-03-04T17:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169164#M40066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;None of the above will work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do however is define the string you want in the script and use some other special character such as ~ to take the place of the $. Define a second variable which then references the first which replaces the ~ character with a $. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set vTodayString = "~(Today());&lt;/P&gt;&lt;P&gt;set vToday = "=replace([vTodayString],'~','$')";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's a hideous way of doing it, but it should work. I did this when using a variable to store an expression containing set analysis, which used dollar expansion within the definition for the set. Letting the script do the dollar expansion was generating an "internal error", hence this approach. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't see why you would want to do this for such a simple function, but it should help others out who may be doing something a little more complex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my set analysis expression for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Set analysis string using ~ in the place of $ to prevent expansion&lt;/P&gt;&lt;P&gt;set DailyDemandString = "sum({~&amp;lt;TransType = {~(SALESTRANS)}, PERIOD_DATE = {'&amp;gt;=~(=Date('~(Today)' - [NumberOfDaysForDemand]))&amp;lt;=~(Today)'}&amp;gt;} MO_Quantity * -1) / [NumberOfDaysForDemand]";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set DailyDemand = "=replace([DailyDemandString],'~','$')";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2011 16:47:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169164#M40066</guid>
      <dc:creator />
      <dc:date>2011-11-04T16:47:17Z</dc:date>
    </item>
    <item>
      <title>Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169165#M40067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jacob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Your tip worked perfect to me. I had a script that loads several formulas stored on a Excel Worksheet&amp;nbsp; and I was dealing with this trouble for a while. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pablo Labbe&lt;/P&gt;&lt;P&gt;Qlikview Consultant&lt;/P&gt;&lt;P&gt;Vision Gestão &amp;amp; Tecnologia&lt;/P&gt;&lt;P&gt;www.visiongi.com.br&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2012 12:35:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169165#M40067</guid>
      <dc:creator>pablolabbe</dc:creator>
      <dc:date>2012-01-24T12:35:15Z</dc:date>
    </item>
    <item>
      <title>Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169166#M40068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a problem. I'm glad it worked for you &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2012 12:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169166#M40068</guid>
      <dc:creator />
      <dc:date>2012-01-25T12:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169167#M40069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, thankfully I wasn't the Only() one having this problem....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have followed your recipe, but in order to get my new variable to work I must refer to it as &lt;SPAN style="font-family: courier new,courier;"&gt;$(variable)&lt;/SPAN&gt;. Is there any way to have &lt;SPAN style="font-family: courier new,courier;"&gt;variable&lt;/SPAN&gt; be enough? (This is sufficient if I type the definition manually in the variable editor (CTRL-ALT-V)). The variable in question is, namely, being used in various nested expressions, so it would be nice to avoid this final dollar sign... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2012 14:39:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169167#M40069</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-21T14:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169168#M40070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe you will have no option but to dollar expand the variable, as the idea is that you evaluate the expression within the variable and then use the result of that expansion to form your expression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the square brackets just gets the literal value of the variable, without evaluating it, so the likelihood is it just wouldn't work syntactically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean, I'm no expert, so anyone else from the forums who knows more about the technical syntax; feel free to pitch in and correct me...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2012 14:50:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169168#M40070</guid>
      <dc:creator />
      <dc:date>2012-03-21T14:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169169#M40071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow once again, and thanks for the quick reply! (Yes, I am aware of the email alerts... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, I didn't know that the&lt;SPAN style="font-family: courier new,courier;"&gt; []&lt;/SPAN&gt;'s made a difference, so I might play around a bit with those --- you never know. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(For now these expressions are hardcoded since, as mentioned, I haven't always had luck with the &lt;SPAN style="font-family: courier new,courier;"&gt;$(variable)&lt;/SPAN&gt; notation because of expression nesting. But hey, I certainly am no expert regarding the subtleties of the dollar sign, so if there are any experts around, any help would of course be much appreciated!)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2012 15:07:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169169#M40071</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-21T15:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169170#M40072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Was having a similar problem nd have just found a workable solution.&lt;/P&gt;&lt;P&gt;My issue is that I wanted to create a way of translating text, chart titles, column titles etc on the front end between English and Swedish based on a variable choosen by the user.&lt;/P&gt;&lt;P&gt;After loading in a TransDict table from a spreadsheet, the script I used was as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO WHILE a &amp;lt; vTransRows&lt;/P&gt;&lt;P&gt;LET varName = Peek('Variable', a,'TransDict');&lt;/P&gt;&lt;P&gt;LET Eng_$(varName) = Peek('English', a,'TransDict');&lt;/P&gt;&lt;P&gt;LET Swe_$(varName) = Peek('Swedish', a,'TransDict');&lt;/P&gt;&lt;P&gt;LET vTransStr = '(vLang)_$(varName)';&lt;/P&gt;&lt;P&gt;LET Trans_$(varName) = '=$'&amp;amp;vTransStr;&lt;/P&gt;&lt;P&gt;LET a = a + 1;&lt;/P&gt;&lt;P&gt;LOOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prefixing the vTransStr with a dollar after I had initially created it means that the variables now read as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trans_ChartTitle1 = '=$(vLang)_ChartTitle1'&lt;/P&gt;&lt;P&gt;Trans_ChartTitle2 = '=$(vLang)_ChartTitle2'&lt;/P&gt;&lt;P&gt;Trans_ChartTitle3 = '=$(vLang)_ChartTitle3'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means I can the change the value of vLang between 'Eng' and 'Swe' and show different text accordingly.&lt;/P&gt;&lt;P&gt;Hope this helps someone.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 08:06:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169170#M40072</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-20T08:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169171#M40073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh my god, it was that simple, eh -- why didn't I think of that?! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/laugh.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LET variable = '= only({$&amp;lt;Sales={"' &amp;amp; '$' &amp;amp; '(#=max(Sales))"}&amp;gt;} Town)';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hooray!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 07:59:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169171#M40073</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-18T07:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169172#M40074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still a valid solution 5 years later! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2017 17:00:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169172#M40074</guid>
      <dc:creator>Lauri</dc:creator>
      <dc:date>2017-11-15T17:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169173#M40075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yep, I'm still using this, too!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2017 13:01:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169173#M40075</guid>
      <dc:creator>Ben_P</dc:creator>
      <dc:date>2017-12-21T13:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169174#M40076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;Actually you can simplify this somewhat and remove the first &amp;amp; surrounding the $-sign:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;LET variable = 'only({$&amp;lt;Sales={"$'&amp;amp;'(#=max(Sales))"}&amp;gt;} Town)';&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 13:29:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/169174#M40076</guid>
      <dc:creator>kjhertz</dc:creator>
      <dc:date>2018-07-12T13:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Stop Dollar Sign Expansion in the script (Escape Character ??? )</title>
      <link>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/1627890#M446219</link>
      <description>&lt;P&gt;Does this still work with newer versions of Qlik Sense.&amp;nbsp; When I try this using June 2019&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SET A = $(Today())&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A = &amp;lt;NULL&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/t5/image/serverpage/image-id/20021i983EACED5C247418/image-size/medium?v=1.0&amp;amp;px=-1" border="0" title="clipboard_image_0.png" alt="clipboard_image_0.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 22:44:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Stop-Dollar-Sign-Expansion-in-the-script-Escape-Character/m-p/1627890#M446219</guid>
      <dc:creator>mjperreault</dc:creator>
      <dc:date>2019-09-24T22:44:25Z</dc:date>
    </item>
  </channel>
</rss>

