<?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: convert string to table with no word split in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201311#M1376108</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Word Wrapping" should be a type of split at Space (which is delimiter) in specified Length. So, Delimiter would have always higher preference than Length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM IQAPI_WORD_WRAP is consistent with its priorities: First Delimiter and than Length&lt;/P&gt;&lt;P&gt;Where as FM RKD_WORD_WRAP is &lt;U&gt;not&lt;/U&gt; consistent. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
THAT'
" For this first line Delimiter took preference
S DEFINITELY THE BETTER SOLUTION. D
IDN'T KNOW THAT ONE YET.
" For this last line, Length took preference 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Oct 2009 15:18:33 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2009-10-16T15:18:33Z</dc:date>
    <item>
      <title>convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201296#M1376093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;hope i can get some help with my problem.&lt;/P&gt;&lt;P&gt;i know there are function modules that convert a string to a table.&lt;/P&gt;&lt;P&gt;for example SCMS_STRING_TO_FTEXT.&lt;/P&gt;&lt;P&gt;but i couldn't find a fm that does it considering not to split words.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;looks like this:&lt;/P&gt;&lt;P&gt;................this is a te&lt;/P&gt;&lt;P&gt;st&lt;/P&gt;&lt;P&gt;should look like this&lt;/P&gt;&lt;P&gt;.................this is a&lt;/P&gt;&lt;P&gt;test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks very much for your help&lt;/P&gt;&lt;P&gt;Helmut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 12:28:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201296#M1376093</guid>
      <dc:creator>helmut_sieberer</dc:creator>
      <dc:date>2009-10-16T12:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201297#M1376094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with below syntax:&lt;/P&gt;&lt;P&gt;DATA: dobj TYPE string,&lt;/P&gt;&lt;P&gt;           result_tab type table of string.&lt;/P&gt;&lt;P&gt;dobj  = 'This is an example'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT dobj AT space INTO TABLE result_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will split the string into table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 12:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201297#M1376094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-16T12:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201298#M1376095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i have no seperator &lt;/P&gt;&lt;P&gt;if i use space i would get every word in a extra line&lt;/P&gt;&lt;P&gt;Greets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 12:49:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201298#M1376095</guid>
      <dc:creator>helmut_sieberer</dc:creator>
      <dc:date>2009-10-16T12:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201299#M1376096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FM &lt;STRONG&gt;TEXT_SPLIT&lt;/STRONG&gt; maybe?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:11:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201299#M1376096</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-10-16T13:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201300#M1376097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try F &lt;STRONG&gt;IQAPI_WORD_WRAP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201300#M1376097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-16T13:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201301#M1376098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's definitely the better solution. Didn't know that one yet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:20:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201301#M1376098</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-10-16T13:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201302#M1376099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again you have put me in dilemma ;-(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try with IQAPI_WORD_WRAP for Micky's Statement for lenght 35 characters. It returns me table with 3 lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;THAT'S DEFINITELY THE BETTER
SOLUTION. DIDN'T KNOW THAT ONE
YET.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try with RKD_WORD_WRAP for Micky's Statement for lenght 35 characters. It returns me table with 2 lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;THAT'S DEFINITELY THE BETTER
SOLUTION. DIDN'T KNOW THAT ONE YET.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please enlighten me &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201302#M1376099</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-10-16T13:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201303#M1376100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Micky's statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201303#M1376100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-16T13:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201304#M1376101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Rob,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; That's definitely the better solution. Didn't know that one yet.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeah &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:49:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201304#M1376101</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-10-16T13:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201305#M1376102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see - probably a question for OSS &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The OP can take whichever he likes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201305#M1376102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-16T13:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201306#M1376103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The OR Condition in this IF makes the RKD_WORD_WRAP to WRAP it in 2 lines.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    IF ( &amp;lt;F&amp;gt; EQ DELIMITER AND IPOS NE 0 ) OR
       ( STRING_LENGTH LE OUTPUTLEN ).              "aw170997/31I/H83654
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201306#M1376103</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-10-16T13:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201307#M1376104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But why do we have the discrepancy, we should not be having it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 14:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201307#M1376104</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-10-16T14:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201308#M1376105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, we must not be having any discrepancy. &lt;/P&gt;&lt;P&gt;It looks like SAP didn't bother to apply the same patch to FM IQAPI_WORD_WRAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the applied patch in the RKD_WORD_WRAP is not good enough:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the same input text from Micky&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's definitely the better solution. Didn't know that one yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;RKD_WORD_WRAP with input parameters:&lt;/P&gt;&lt;P&gt;DELIMITER = single quote&lt;/P&gt;&lt;P&gt;OUTPUTLEN = 35&lt;/P&gt;&lt;P&gt;Output table:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
THAT'
S DEFINITELY THE BETTER SOLUTION. D
IDN'T KNOW THAT ONE YET.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Which is wrong. &lt;/P&gt;&lt;P&gt;I was expecting that it would generate 4 entries and FM IQAPI_WORD_WRAP generated 4 entries for the same input parameters:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
THAT'
S DEFINITELY THE BETTER SOLUTION. D
IDN'
T KNOW THAT ONE YET.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which one is better ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@ Micky,&lt;/P&gt;&lt;P&gt;Thanks for building &lt;U&gt;great&lt;/U&gt; test data &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 14:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201308#M1376105</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-10-16T14:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201309#M1376106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;THAT'
S DEFINITELY THE BETTER SOLUTION. D
IDN'
T KNOW THAT ONE YET.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not correct "word wrapping". This is basically splitting the string into block of 35 characters each &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 15:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201309#M1376106</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-10-16T15:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201310#M1376107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At least I'm good for something...you're welcome.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 15:06:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201310#M1376107</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-10-16T15:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: convert string to table with no word split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201311#M1376108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Word Wrapping" should be a type of split at Space (which is delimiter) in specified Length. So, Delimiter would have always higher preference than Length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM IQAPI_WORD_WRAP is consistent with its priorities: First Delimiter and than Length&lt;/P&gt;&lt;P&gt;Where as FM RKD_WORD_WRAP is &lt;U&gt;not&lt;/U&gt; consistent. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
THAT'
" For this first line Delimiter took preference
S DEFINITELY THE BETTER SOLUTION. D
IDN'T KNOW THAT ONE YET.
" For this last line, Length took preference 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 15:18:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-table-with-no-word-split/m-p/6201311#M1376108</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-10-16T15:18:33Z</dc:date>
    </item>
  </channel>
</rss>

