<?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: Return a input string as a JSON table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788798#M252302</link>
    <description>&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;When I added a macro "input_string" to control the input strings, the below script run with errors&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;filename j temp;

%let input_string =%nrbquote({"OrderID1": "A0000123", "OrderDate1": "4/30/2010","OrderID2": "A0000124", "OrderDate2": ""});

data _null_;
file j;

put &amp;amp;input_string;

run;

libname data json fileref=j;

data output;
 set data.root (drop=ordinal:);
run;

proc print data=output;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sarahzhou_0-1641533374373.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/67176iBB1A16F5F728AFCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sarahzhou_0-1641533374373.png" alt="sarahzhou_0-1641533374373.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I read the document&amp;nbsp;&lt;A href="https://blogs.sas.com/content/sasdummy/2018/07/05/if-then-else-sas-programs/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sasdummy/2018/07/05/if-then-else-sas-programs/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It shoud give me the expected output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you advise?&lt;/P&gt;&lt;P&gt;How can I modify my code.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Jan 2022 05:32:25 GMT</pubDate>
    <dc:creator>sarahzhou</dc:creator>
    <dc:date>2022-01-07T05:32:25Z</dc:date>
    <item>
      <title>Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788653#M252198</link>
      <description>&lt;P&gt;I have a SAS code:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;%let input_string =%nrbquote([{"OrderID": "A0000123", "OrderDate": "4/30/2010"},{"OrderID": "A0000124", "OrderDate": ""}]);

data json_text;
json_text="&amp;amp;input_String.";
run;

data Parse_JSON (drop=json_text drop=regex01 drop=regex02 drop=regex03 drop=regex04);
set WORK.json_text;
	retain 
		regex01
		regex02
		regex03
		regex04
;
  	if _N_ = 1 then do; 
		regex01=prxparse("/(.+?)OrderID(.+?)OrderDate/"); 
		regex02=prxparse("/(.+?)OrderDate(.+?)\}/"); 
	    regex03=prxparse("/(.+?)OrderID(.+?)OrderDate/"); 
		regex04=prxparse("/(.+?)OrderDate(.+?)\}/"); 
	end;

	if prxmatch(regex01, json_text) then do;
		OrderID1=strip(tranwrd(tranwrd(tranwrd(upcase(prxposn(regex01, 2, json_text)),":",""),",",""),'"',""));
    end;
	if prxmatch(regex02, json_text) then do;
		OrderDate1=input(strip(tranwrd(tranwrd(tranwrd(upcase(prxposn(regex02, 2, json_text)),":",""),",",""),'"',"")),YYMMDD10.);
    end;

    if prxmatch(regex03, json_text) then do;
		OrderID2=strip(tranwrd(tranwrd(tranwrd(upcase(prxposn(regex03, 2, json_text)),":",""),",",""),'"',""));
    end;
	if prxmatch(regex04, json_text) then do;
		OrderDate2=input(strip(tranwrd(tranwrd(tranwrd(upcase(prxposn(regex04, 2, json_text)),":",""),",",""),'"',"")),YYMMDD10.);
    end;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I want to get the output JSON table as&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;OrderID1&lt;/TD&gt;&lt;TD&gt;OrderDate1&lt;/TD&gt;&lt;TD&gt;OrderID1&lt;/TD&gt;&lt;TD&gt;OrderDate1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A0000123&lt;/TD&gt;&lt;TD&gt;4/30/2010&lt;/TD&gt;&lt;TD&gt;A0000124&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I run it, I get&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;OrderID1&lt;/TD&gt;&lt;TD&gt;OrderDate1&lt;/TD&gt;&lt;TD&gt;OrderID1&lt;/TD&gt;&lt;TD&gt;OrderDate1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A0000123&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;A0000123&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I fix my code. Kindly help.&lt;/P&gt;&lt;P&gt;Many many thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 13:34:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788653#M252198</guid>
      <dc:creator>sarahzhou</dc:creator>
      <dc:date>2022-01-06T13:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788657#M252199</link>
      <description>&lt;P&gt;When working with JSON as input, always &lt;A href="https://blogs.sas.com/content/sasdummy/2016/12/02/json-libname-engine-sas/" target="_self"&gt;think of the JSON libname engine first&lt;/A&gt;...before resorting to DATA step parsing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;filename j temp;

data _null_;
file j;
put '[{"OrderID": "A0000123", "OrderDate": "4/30/2010"},{"OrderID": "A0000124", "OrderDate": ""}]';
run;

libname data json fileref=j;

data output;
 set data.root;
run;

proc print data=output;
run;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 14:07:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788657#M252199</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2022-01-06T14:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788658#M252200</link>
      <description>&lt;P&gt;With simple regular strings like that I find that SCAN() is easier to use.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
  json='[{"OrderID": "A0000123", "OrderDate": "4/30/2010"},{"OrderID": "A0000124", "OrderDate": ""}]';
  dlm='[]{}: ,';
  do index=1 to countw(json,dlm,'q');
    name=dequote(scan(json,index,dlm,'q'));
    index+1;
    value=dequote(scan(json,index,dlm,'q'));
    column+(name='OrderID');
    output;
  end;
  drop dlm index;
run;

proc print;
 by json ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result&lt;/P&gt;
&lt;PRE&gt;json=[{"OrderID": "A0000123", "OrderDate": "4/30/2010"},{"OrderID": "A0000124", "OrderDate": ""}]

Obs      name         value      column

 1     OrderID      A0000123        1
 2     OrderDate    4/30/2010       1
 3     OrderID      A0000124        2
 4     OrderDate                    2
&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Jan 2022 14:09:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788658#M252200</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-01-06T14:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788669#M252204</link>
      <description>&lt;P&gt;Hi, how do I drop root column?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 15:22:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788669#M252204</guid>
      <dc:creator>sarahzhou</dc:creator>
      <dc:date>2022-01-06T15:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788672#M252206</link>
      <description>&lt;P&gt;The ordinal keys are added to help you join multiple tables coming from a single JSON source.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's just the one simple table and you don't need them, drop them like so:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;data output;
 set data.root (drop=ordinal:);
run;&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 06 Jan 2022 15:30:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788672#M252206</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2022-01-06T15:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788678#M252211</link>
      <description>Thank you!</description>
      <pubDate>Thu, 06 Jan 2022 16:07:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788678#M252211</guid>
      <dc:creator>sarahzhou</dc:creator>
      <dc:date>2022-01-06T16:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788798#M252302</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;When I added a macro "input_string" to control the input strings, the below script run with errors&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;filename j temp;

%let input_string =%nrbquote({"OrderID1": "A0000123", "OrderDate1": "4/30/2010","OrderID2": "A0000124", "OrderDate2": ""});

data _null_;
file j;

put &amp;amp;input_string;

run;

libname data json fileref=j;

data output;
 set data.root (drop=ordinal:);
run;

proc print data=output;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sarahzhou_0-1641533374373.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/67176iBB1A16F5F728AFCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sarahzhou_0-1641533374373.png" alt="sarahzhou_0-1641533374373.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I read the document&amp;nbsp;&lt;A href="https://blogs.sas.com/content/sasdummy/2018/07/05/if-then-else-sas-programs/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sasdummy/2018/07/05/if-then-else-sas-programs/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It shoud give me the expected output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you advise?&lt;/P&gt;&lt;P&gt;How can I modify my code.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 05:32:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788798#M252302</guid>
      <dc:creator>sarahzhou</dc:creator>
      <dc:date>2022-01-07T05:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788839#M252332</link>
      <description>&lt;P&gt;Instead of using NRBQUOTE (which is used for masking values but doesn't produce a quoted string literal), simply use single quotes in the macro variable assignment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;filename j temp;

%let input_string ='{"OrderID1": "A0000123", "OrderDate1": "4/30/2010","OrderID2": "A0000124", "OrderDate2": ""}';

data _null_;
file j;

put &amp;amp;input_string;

run;

libname data json fileref=j;

data output;
 set data.root (drop=ordinal:);
run;

proc print data=output;
run;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 07 Jan 2022 12:22:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788839#M252332</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2022-01-07T12:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788858#M252343</link>
      <description>oh, I see now. Thanks!</description>
      <pubDate>Fri, 07 Jan 2022 13:37:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/788858#M252343</guid>
      <dc:creator>sarahzhou</dc:creator>
      <dc:date>2022-01-07T13:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800244#M314756</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;The&amp;nbsp; input string does not controlled by my end , I have to follow the formate : &lt;CODE class=" language-sas"&gt;%let input_string =%nrbquote([{"MEMBERID1": "A12345690", "DOB1": "", "MEMBERID2": "A12345677", "DOB2": "2022-Mar-03"}]);
&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;then I tried to remove the square breaket by&amp;nbsp;&lt;CODE class=" language-sas"&gt;%sysfunc(compress(&amp;amp;input_string., "[]"))&lt;/CODE&gt;&amp;nbsp;and it gives me error.&lt;/P&gt;
&lt;P&gt;The updated script as below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let input_string =%nrbquote([{"MEMBERID1": "A12345690", "DOB1": "", "MEMBERID2": "A12345677", "DOB2": "2022-Mar-03"}]);

%let input_string_nb =%sysfunc(compress(&amp;amp;input_string., "[]"));
%put &amp;amp;input_string_nb.;
filename j temp;
data _null_;
file j;
put &amp;amp;input_string_nb.;
run;
libname data json fileref=j;

data output;
 set data.root (drop=ordinal:);
run;

proc print data=output noobs;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;How do I fix this?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 17:17:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800244#M314756</guid>
      <dc:creator>sarahzhou</dc:creator>
      <dc:date>2022-03-04T17:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800278#M314768</link>
      <description>&lt;P&gt;Why did you ask COMPRES() to remove the double quote character in addition to the open and close square bracket characters?&amp;nbsp; Take the two double quote characters out of the list of characters you want COMPRESS() to remove.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let input_string_nb =%sysfunc(compress(&amp;amp;input_string.,[]));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You used the macro processor to generate an invalid PUT statement.&amp;nbsp; This is not valid SAS code.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;put {"MEMBERID1": "A12345690", "DOB1": "", "MEMBERID2": "A12345677", "DOB2": "2022-Mar-03"};&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you are going to use the macro processor to generate SAS code you need to have it generate valid SAS code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will find it a lot easier to use normal SAS code to manipulate strings.&amp;nbsp; Plus in they case there is no need to remove the [ ] characters. In other cases removing them will destroy the JSON text.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let input_string=
[{"MEMBERID1": "A12345690", "DOB1": "", "MEMBERID2": "A12345677", "DOB2": "2022-Mar-03"}]
;

filename json temp;
data _null_;
  file json;
  length string $32767;
  string=symget('input_string');
  put string ;
run;

libname json json fileref=json;

proc print data=json.root (drop=ordinal:) noobs;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Results:&lt;/P&gt;
&lt;PRE&gt;MEMBERID1    DOB1    MEMBERID2       DOB2

A12345690            A12345677    2022-Mar-03
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 20:51:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800278#M314768</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-04T20:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800539#M314953</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I call the MEMBERID1, DOB1,MEMBERID2, DOB2 for later use, I need to call DOB 1 and DOB 2 to do some logic comparation.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 04:02:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800539#M314953</guid>
      <dc:creator>sarahzhou</dc:creator>
      <dc:date>2022-03-07T04:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800552#M314961</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/402346"&gt;@sarahzhou&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I call the MEMBERID1, DOB1,MEMBERID2, DOB2 for later use, I need to call DOB 1 and DOB 2 to do some logic comparation.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I really have no idea what you are asking about.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Now that you have data in a dataset just use normal SAS code to use it.&amp;nbsp; The same way you would use the values of NAME or AGE from SASHELP.CLASS.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 05:56:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800552#M314961</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-07T05:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Return a input string as a JSON table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800567#M314971</link>
      <description>Thank you.</description>
      <pubDate>Mon, 07 Mar 2022 06:24:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Return-a-input-string-as-a-JSON-table/m-p/800567#M314971</guid>
      <dc:creator>sarahzhou</dc:creator>
      <dc:date>2022-03-07T06:24:32Z</dc:date>
    </item>
  </channel>
</rss>

