<?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: single quote in macro variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452636#M283948</link>
    <description>&lt;P&gt;In a DATA step, I would try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;test1 = "%superq(test)";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Apr 2018 19:51:18 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2018-04-09T19:51:18Z</dc:date>
    <item>
      <title>single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452607#M283938</link>
      <description>&lt;P&gt;There is a single quote in macro variable test. How could i assign macro variable test to test1 in data set test? Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let test=%str(antidepressant -can't remember name);&lt;BR /&gt;data test;&lt;BR /&gt;test1=&amp;amp;test;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:06:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452607#M283938</guid>
      <dc:creator>luu</dc:creator>
      <dc:date>2018-04-09T19:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452614#M283939</link>
      <description>Try the following:&lt;BR /&gt;test1 = "&amp;amp;test";&lt;BR /&gt;&lt;BR /&gt;You need quotes anyways, to store it as a character variable, otherwise you're saying:&lt;BR /&gt;&lt;BR /&gt;test1=antidpressant;&lt;BR /&gt;&lt;BR /&gt;Which is looking for a variable called antidepressant, not the value of antidepressant.</description>
      <pubDate>Mon, 09 Apr 2018 19:17:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452614#M283939</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-09T19:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452615#M283940</link>
      <description>&lt;P&gt;You would use the same method whether or not there is a single quote:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data test;&lt;BR /&gt;test1="&amp;amp;test";&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only time you run into a problem is when &amp;amp;TEST contains doublequotes.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:18:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452615#M283940</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-09T19:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452622#M283941</link>
      <description>&lt;P&gt;Thank you for your reply. I write it as&amp;nbsp;&amp;nbsp;test1="&amp;amp;test" but still has error. It seems the single quote in macro variable test cannot be resolved well.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR 22-322: Syntax error, expecting one of the following: !, !!, &amp;amp;, *, **, +, -, /, &amp;lt;, &amp;lt;=, &amp;lt;&amp;gt;,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;=, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, EQ, GE, GT, LE, LT, MAX, MIN, NE, NG, NL, OR, ^=, |, ||, ~=.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR 388-185: Expecting an arithmetic operator.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:27:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452622#M283941</guid>
      <dc:creator>luu</dc:creator>
      <dc:date>2018-04-09T19:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452623#M283942</link>
      <description>&lt;P&gt;Thank you for your reply. I write it as&amp;nbsp;&amp;nbsp;test1="&amp;amp;test" but still has error. It seems the single quote in macro variable test cannot be resolved well.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR 22-322: Syntax error, expecting one of the following: !, !!, &amp;amp;, *, **, +, -, /, &amp;lt;, &amp;lt;=, &amp;lt;&amp;gt;,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;=, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, EQ, GE, GT, LE, LT, MAX, MIN, NE, NG, NL, OR, ^=, |, ||, ~=.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR 388-185: Expecting an arithmetic operator.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:27:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452623#M283942</guid>
      <dc:creator>luu</dc:creator>
      <dc:date>2018-04-09T19:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452625#M283943</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let test=%bquote(antidepressant -can't remember name);
%put &amp;amp;test;
data test;
test1="&amp;amp;test";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;love the %bquote&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:29:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452625#M283943</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-09T19:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452627#M283944</link>
      <description>&lt;P&gt;or wanna keep and play with %str then precede the unmatched quote with % like the following:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let test=%str(antidepressant -can%'t remember name);
%put &amp;amp;test;
data test;
test1="&amp;amp;test";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:31:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452627#M283944</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-09T19:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452631#M283945</link>
      <description>&lt;P&gt;As indicated, getting quotes into and out of a macro variable can be tricky.&amp;nbsp; I would go with %STR in this case.&amp;nbsp; For experimentation and learning, here's a program you can run and try to explain:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data _null_;&lt;/P&gt;
&lt;P&gt;call symputx('p', "This won't work");&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;　&lt;/P&gt;
&lt;P&gt;%put &amp;amp;p;&lt;/P&gt;
&lt;P&gt;%put &amp;amp;p;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DON'T do this in the middle of an interactive session.&amp;nbsp; (Unless you figure out how the program works, you would need to shut down the session and start over.)&amp;nbsp; Use a background job.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:39:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452631#M283945</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-09T19:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452633#M283946</link>
      <description>&lt;P&gt;Thank you very much! That works! But do you know how to only change test1="&amp;amp;test" writing instead of change the define of &amp;amp;test?&lt;/P&gt;&lt;P&gt;Because i simplied the code for the question. In my original code the &amp;amp;test variable is the value of a column of a dataset not the variable using %let defined.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:45:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452633#M283946</guid>
      <dc:creator>luu</dc:creator>
      <dc:date>2018-04-09T19:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452634#M283947</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/201636"&gt;@luu&lt;/a&gt;wrote:&lt;BR /&gt;&lt;P&gt;In my original code the &amp;amp;test variable is the &lt;STRONG&gt;value of a column of a dataset&lt;/STRONG&gt; not the variable using %let defined.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;In that case you don't need the double quotes wrapper&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS we do not know your data, so we can only assume and&amp;nbsp; guess. HTH&lt;/P&gt;&lt;P&gt;So give me a sample of the data please&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 20:03:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452634#M283947</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-09T20:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452636#M283948</link>
      <description>&lt;P&gt;In a DATA step, I would try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;test1 = "%superq(test)";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 19:51:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452636#M283948</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-09T19:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452637#M283949</link>
      <description>&lt;P&gt;Assuming that at some point in this session you attempted to execute:&lt;/P&gt;
&lt;PRE&gt;%let test = somestr'ng; 
&lt;/PRE&gt;
&lt;P&gt;Everything from that point on is likely suspect as you did not complete the assignment to test. The first single quote "ate" the semicolon until the next single quote appeared in your session.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So without a posting from the log of submitted code AND the error message and preferably posted into a code box to prevent the forum message windows from reformatting text it does not help very much to post random snippets from the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are using the enhanced editor and have reasonable code highlighting settings the text should give a clue something is happening.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let test = somestr'ng'; 
%let somethingelse=blah;


%let test = somestr'ng; 
%let somethingelse=blah;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Notice that even the minimal highlighting in the code box&amp;nbsp;shows the string enclosed with quotes in the first ling as a different color but in the third line with the single quote there is no highlight color. Indicates a&amp;nbsp;quote issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 20:06:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452637#M283949</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-09T20:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452638#M283950</link>
      <description>&lt;P&gt;If the column name has a single quote in it, you need to use literals, use double quotes and the n at the end.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;test = "&amp;amp;test"n;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Apr 2018 20:07:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452638#M283950</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-09T20:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452645#M283951</link>
      <description>&lt;P&gt;Thank you for your great help!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Part of my data is like this, there is a variable named "medicine_name"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;STRONG&gt; &amp;nbsp;medicine_name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;levothyroxin 100mgcg&lt;/P&gt;&lt;P&gt;antidepressant -can't remember name&lt;/P&gt;&lt;P&gt;Simvastatin Tabs&lt;/P&gt;&lt;P&gt;gabapentin 300mg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I put them into a list of macro vairables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; select medicine_name into : test1-:test99999 from xxx;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then assign macro variable into a dataset variable:&lt;/P&gt;&lt;P&gt;data result;&lt;/P&gt;&lt;P&gt;med="&amp;amp;test2";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because &amp;amp;test2 is "&lt;EM&gt;&lt;STRONG&gt;antidepressant -can't remember name&lt;/STRONG&gt;&lt;/EM&gt;", at this point, i get the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 20:25:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452645#M283951</guid>
      <dc:creator>luu</dc:creator>
      <dc:date>2018-04-09T20:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452648#M283952</link>
      <description>&lt;P&gt;Your code seems to work fine when i tested it:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data xxx;

input  medicine_name $50.;
datalines;
levothyroxin 100mgcg
antidepressant -can't remember name
Simvastatin Tabs
gabapentin 300mg
;

proc sql noprint;

        select medicine_name into : test1-:test99999 from xxx;

quit;

 

/*And then assign macro variable into a dataset variable:*/

data result;

med="&amp;amp;test2";

run;

 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here is the log:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;228 data xxx;&lt;BR /&gt;229&lt;BR /&gt;230 input medicine_name $50.;&lt;BR /&gt;231 datalines;&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.XXX has 4 observations and 1 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;236 ;&lt;BR /&gt;237&lt;BR /&gt;238 proc sql noprint;&lt;BR /&gt;239&lt;BR /&gt;240 select medicine_name into : test1-:test99999 from xxx;&lt;BR /&gt;241&lt;BR /&gt;242 quit;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;243&lt;BR /&gt;244&lt;BR /&gt;245&lt;BR /&gt;246 /*And then assign macro variable into a dataset variable:*/&lt;BR /&gt;247&lt;BR /&gt;248 data result;&lt;BR /&gt;249&lt;BR /&gt;250 med="&amp;amp;test2";&lt;BR /&gt;251&lt;BR /&gt;252 run;&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.RESULT has 1 observations and 1 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 20:35:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452648#M283952</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-09T20:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452665#M283953</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/201636"&gt;@luu&lt;/a&gt;&amp;nbsp;Ok I think you have a point here as my successive tests kinda gave me crazy log messages. Why bother. Just immediately quote it before the datastep like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data xxx;

input  medicine_name $50.;
datalines;
levothyroxin 100mgcg
antidepressant -can't remember name
Simvastatin Tabs
gabapentin 300mg
;
%macro luu;

proc sql noprint;

        select medicine_name into : test1-:test99999 from xxx;

quit;

  %do i=1 %to &amp;amp;sqlobs;
  %let test&amp;amp;i=%bquote(&amp;amp;&amp;amp;test&amp;amp;i);
  %end;


/*And then assign macro variable into a dataset variable:*/

data result;

med="&amp;amp;test2";

run;

%mend ulu;

%luu&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is a safe bet. HTH&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 21:17:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452665#M283953</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-09T21:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: single quote in macro variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452688#M283954</link>
      <description>&lt;P&gt;You are right, this program can run through. I notice there are some other places I used &amp;amp;test2 I have modified it. Thank you very much for your great help!&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 22:32:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/single-quote-in-macro-variable/m-p/452688#M283954</guid>
      <dc:creator>luu</dc:creator>
      <dc:date>2018-04-09T22:32:20Z</dc:date>
    </item>
  </channel>
</rss>

