<?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: Dynamic array size is overwritten within Do Loop in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466736#M285294</link>
    <description>&lt;P&gt;Flattery works. +1 for you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And thank you!&lt;/P&gt;</description>
    <pubDate>Fri, 01 Jun 2018 04:05:14 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2018-06-01T04:05:14Z</dc:date>
    <item>
      <title>Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466712#M285289</link>
      <description>&lt;P&gt;Hello!&amp;nbsp; I'm new to SAS (but not programming) and would really appreciate advice on an issue I'm working on.&amp;nbsp; Please note that the following is a simple test I've constructed for my own understanding before I apply it to a larger dataset with more criteria.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Objective:&lt;/STRONG&gt; I'd like to declare and populate a dynamic array (word_array) with the words that precede each instance of the word "SAS."&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Output:&lt;/STRONG&gt; Using the example string below with 4 instances of "SAS", the desired output I'm after is...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;word_array{1} = It looks like&lt;/P&gt;&lt;P&gt;word_array{2} = is the way to go I love&lt;/P&gt;&lt;P&gt;word_array{3} = oh yasss&lt;/P&gt;&lt;P&gt;word_array{4} = woohoo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Current Code:&lt;/STRONG&gt; Is as follows...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;%let string=It looks like SAS is the way to go I love SAS oh yasss SAS woohoo SAS;

data _null_; 
   string=symget('string');
   cnt=countc(string,'SAS')/3;
   array word_array{*} _CHARACTER_;
   j=1;
   do i = 1 by 1 to cnt;
      put i=;
	  put j=;
	  put string=;
   	  if length(word_array{j})&amp;gt;lengthc(word_array{j}) then j+1;
	  word_array{j}=trim(scan(string,i,'SAS'));
	  put word_array{j}=;
      end; 
   stop; 
   run; &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I can see from my puts (put i=; etc) is that my dynamic array &lt;STRONG&gt;word_array&lt;/STRONG&gt; is not advancing to the next instance of "SAS" - and I'm not sure whether it's my poor syntax around (1) declaring the macro variable &lt;STRONG&gt;string&lt;/STRONG&gt; or&amp;nbsp;(2) the dynamic array&amp;nbsp;&lt;STRONG&gt;word_array&lt;/STRONG&gt; or (3) that&amp;nbsp;&lt;STRONG&gt;j&lt;/STRONG&gt; is not incrementing forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Current Output:&lt;/STRONG&gt; Is shown below...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;i=1
j=1
string=It looks like SAS is the way to go I love SAS oh yasss SAS woohoo SAS
string=It looks like
i=2
j=1
string=It looks like
string= 
i=3
j=1
string= 
string= 
i=4
j=1
string= 
string= &lt;/PRE&gt;&lt;P&gt;Many thanks in advance - I've been reading through a lot of online documentation and I'm sure there's got to be a simple solution that I'm just not seeing.&amp;nbsp; Let me know if I'm not following posting protocols and I will revise.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 02:47:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466712#M285289</guid>
      <dc:creator>DBloom</dc:creator>
      <dc:date>2018-06-01T02:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466721#M285290</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;cnt=countc(string,'SAS')/3;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Perhaps use COUNTW to find the number of times SAS is in the string?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;COUNTC counts character so I'm not sure what that's supposed to be doing here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;&amp;nbsp; array word_array{*} _CHARACTER_;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This declares an array of all the character variables. SAS does not support dynamic sized arrays. _CHARACTER_ is a shortcut reference to all character variables.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;PRE&gt; do i = 1 by 1 to cnt;&lt;/PRE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;A do statement is usually&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DO i=1 to cnt by 1 (wrong order in yours).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;PRE&gt; if length(word_array{j})&amp;gt;lengthc(word_array{j}) then j+1;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Since you only have one variable this will work the first time and then not again, which is what you're seeing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since SAS does not support dynamic arrays, an option that I would suggest would be to output the strings as a new line each and then transpose if desired. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let string=It looks like SAS is the way to go I love SAS oh yasss SAS woohoo SAS;

data outStrings;
    string="&amp;amp;string";
    *Find the number of times SAS is in the string;
    count_sas=countw(string, 'SAS');
    start=1;

    do i=1 to count_sas;
        *Find the word in the string;
        loc=findw(string, 'SAS', start);
        *substring the component;
        outString=substr(string, start, loc-1-start);
        *output to a data set;
        output;
        *set the start location to after the last word, this can be dynamic if needed;
        start=loc+3;
    end;
    
    *keep only relevant variables;
    rename i=index;
    keep string outString i;
run;

*reshape to a wide format;
proc transpose data=outStrings out=Want prefix=String;
    by string;
    id index;
    var outString;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213116"&gt;@DBloom&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello!&amp;nbsp; I'm new to SAS (but not programming) and would really appreciate advice on an issue I'm working on.&amp;nbsp; Please note that the following is a simple test I've constructed for my own understanding before I apply it to a larger dataset with more criteria.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Objective:&lt;/STRONG&gt; I'd like to declare and populate a dynamic array (word_array) with the words that precede each instance of the word "SAS."&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Output:&lt;/STRONG&gt; Using the example string below with 4 instances of "SAS", the desired output I'm after is...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;word_array{1} = It looks like&lt;/P&gt;
&lt;P&gt;word_array{2} = is the way to go I love&lt;/P&gt;
&lt;P&gt;word_array{3} = oh yasss&lt;/P&gt;
&lt;P&gt;word_array{4} = woohoo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Current Code:&lt;/STRONG&gt; Is as follows...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;%let string=It looks like SAS is the way to go I love SAS oh yasss SAS woohoo SAS;

data _null_; 
   string=symget('string');
   cnt=countc(string,'SAS')/3;
   array word_array{*} _CHARACTER_;
   j=1;
   do i = 1 by 1 to cnt;
      put i=;
	  put j=;
	  put string=;
   	  if length(word_array{j})&amp;gt;lengthc(word_array{j}) then j+1;
	  word_array{j}=trim(scan(string,i,'SAS'));
	  put word_array{j}=;
      end; 
   stop; 
   run; &lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I can see from my puts (put i=; etc) is that my dynamic array &lt;STRONG&gt;word_array&lt;/STRONG&gt; is not advancing to the next instance of "SAS" - and I'm not sure whether it's my poor syntax around (1) declaring the macro variable &lt;STRONG&gt;string&lt;/STRONG&gt; or&amp;nbsp;(2) the dynamic array&amp;nbsp;&lt;STRONG&gt;word_array&lt;/STRONG&gt; or (3) that&amp;nbsp;&lt;STRONG&gt;j&lt;/STRONG&gt; is not incrementing forward.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Current Output:&lt;/STRONG&gt; Is shown below...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;i=1
j=1
string=It looks like SAS is the way to go I love SAS oh yasss SAS woohoo SAS
string=It looks like
i=2
j=1
string=It looks like
string= 
i=3
j=1
string= 
string= 
i=4
j=1
string= 
string= &lt;/PRE&gt;
&lt;P&gt;Many thanks in advance - I've been reading through a lot of online documentation and I'm sure there's got to be a simple solution that I'm just not seeing.&amp;nbsp; Let me know if I'm not following posting protocols and I will revise.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 03:26:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466721#M285290</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-06-01T03:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466731#M285291</link>
      <description>&lt;P&gt;An easy way to split strings is to use a special character as the marker. I chose 01x here.&lt;/P&gt;
&lt;P&gt;It may or not be useful to you:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  STR1='It looks like SAS is the way to go I love SAS oh yasss SAS woohoo SAS';
  STR2=tranwrd(STR1,'SAS','01'x);
  do I=1 to countw(STR2,'01'x);
    STR3=scan(STR2,I,'01'x);
    if STR3 ne ' ' then putlog STR3=;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;STR3=It looks like&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;STR3=is the way to go I love&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;STR3=oh yasss&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;STR3=woohoo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 03:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466731#M285291</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-06-01T03:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466733#M285292</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data w;
string='It looks like SAS is the way to go I love SAS oh yasss SAS woohoo SAS';
length word $50;
k=1;
do n=1 to countw(string);
if scan(string,n)='SAS' then  do;
call scan(string, n, position, length);
word=substr(string, k, position-k);
k=position+length;
output;
end;
end;
keep word;
run;

proc transpose data=w out=want prefix=word;
var word;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 03:59:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466733#M285292</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-06-01T03:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466734#M285293</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;Sir, That's very smart clever. I am jealous!!!!!!!!!!!!!!!!!!!!!!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 04:01:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466734#M285293</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-06-01T04:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466736#M285294</link>
      <description>&lt;P&gt;Flattery works. +1 for you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 04:05:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466736#M285294</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-06-01T04:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466812#M285295</link>
      <description>&lt;P&gt;Hi ChrisNZ,&lt;/P&gt;&lt;P&gt;May I ask what does your hexadecimal marker "01X" do here?&amp;nbsp; For instance, if I had to apply this to a different string that was looking up numerical strings as delimiters, would this still work?&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;&lt;P&gt;Dale&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 12:44:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466812#M285295</guid>
      <dc:creator>DBloom</dc:creator>
      <dc:date>2018-06-01T12:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466833#M285296</link>
      <description>&lt;P&gt;Many thanks novinosrin!&amp;nbsp; Out of curiosity (since the full dataset I'm working with will inevitably have special characters)...&amp;nbsp;if the string contained semicolons ";" as delimiters instead of the word "SAS" , how would I adjust this?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 13:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466833#M285296</guid>
      <dc:creator>DBloom</dc:creator>
      <dc:date>2018-06-01T13:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466834#M285297</link>
      <description>&lt;P&gt;Many thanks Reeza!&amp;nbsp; Quick question - my complete dataset will inevitably contain special characters...for instance, in place of "SAS" in the below example, the data may contain multiple semicolons ";"&amp;nbsp; that will be used as delimiters - how should I adjust the macro declaration for this?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 13:42:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466834#M285297</guid>
      <dc:creator>DBloom</dc:creator>
      <dc:date>2018-06-01T13:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466848#M285298</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213116"&gt;@DBloom&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Many thanks Reeza!&amp;nbsp; Quick question - my complete dataset will inevitably contain special characters...for instance, in place of "SAS" in the below example, the data may contain multiple semicolons ";"&amp;nbsp; that will be used as delimiters - how should I adjust the macro declaration for this?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It shouldn't affect the code I provided, unless you need to account for them somehow. In that case you need to provide an example.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 14:34:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466848#M285298</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-06-01T14:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466954#M285299</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp; I accepted this as an answer due to its&amp;nbsp;brevity and updated it for my use case:&lt;/P&gt;&lt;PRE&gt;data w;
  str1='It looks like SAS is the way to go I love SAS oh yasss SAS woohoo SAS';
  str2=tranwrd(str1,'SAS','01'x);
  do i=1 to countw(str1,'SAS');
    str3=trim(scan(str2,i,'01'x));
    if str3 ne ' ' then putlog str3=;
	output;
  end;
  keep str1 i str3;
run;

proc transpose data=w label=i name=str1 prefix=str3;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Jun 2018 17:53:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/466954#M285299</guid>
      <dc:creator>DBloom</dc:creator>
      <dc:date>2018-06-01T17:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic array size is overwritten within Do Loop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/467060#M285300</link>
      <description>&lt;P&gt;'01'x is a non printable-character with hexadecimal code 01.&lt;/P&gt;
&lt;P&gt;Like 09x is a tab and 20x is the space character.&lt;/P&gt;
&lt;P&gt;Since 01x is extremely rare in strings, it is a good choice for such cases.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jun 2018 01:14:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dynamic-array-size-is-overwritten-within-Do-Loop/m-p/467060#M285300</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-06-02T01:14:13Z</dc:date>
    </item>
  </channel>
</rss>

