<?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: String problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226223#M137961</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U have to use &lt;/P&gt;&lt;P&gt;shift statement left or right&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shifting a String by a Given Number of Positions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT &amp;lt;c&amp;gt; [BY &amp;lt;n&amp;gt; PLACES] [&amp;lt;mode&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement shifts the field &amp;lt;c&amp;gt; by &amp;lt;n&amp;gt; positions. If you omit BY &amp;lt;n&amp;gt; PLACES, &amp;lt;n&amp;gt; is interpreted as one. If &amp;lt;n&amp;gt; is 0 or negative, &amp;lt;c&amp;gt; remains unchanged. If &amp;lt;n&amp;gt; exceeds the length of &amp;lt;c&amp;gt;, &amp;lt;c&amp;gt; is filled out with blanks. &amp;lt;n&amp;gt; can be variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the different &amp;lt;mode&amp;gt; options, you can shift the field &amp;lt;c&amp;gt; in the following ways:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;mode&amp;gt; is LEFT: &lt;/P&gt;&lt;P&gt;Shifts the field contents &amp;lt;n&amp;gt; places to the left and adds &amp;lt;n&amp;gt; blanks at the right-hand end of the field (default).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;mode&amp;gt; is RIGHT:&lt;/P&gt;&lt;P&gt;Shift &amp;lt;n&amp;gt; positions to the right and adds &amp;lt;n&amp;gt; blanks at the left-hand end of the field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;mode&amp;gt; is CIRCULAR:&lt;/P&gt;&lt;P&gt;Shift &amp;lt;n&amp;gt; positions to the left so that &amp;lt;n&amp;gt; characters on the left appear on the right.&lt;/P&gt;&lt;P&gt;DATA: T(10) VALUE 'abcdefghij',&lt;/P&gt;&lt;P&gt;STRING LIKE T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;WRITE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT STRING.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;SHIFT STRING BY 3 PLACES LEFT.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;SHIFT STRING BY 3 PLACES RIGHT.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;SHIFT STRING BY 3 PLACES CIRCULAR.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abcdefghij&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bcdefghij&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;defghij&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   abcdefg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;defghijabc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u can use var &lt;/P&gt;&lt;P&gt;var = Concatenation var+ 0(10) ,....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regard&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Mar 2006 10:57:09 GMT</pubDate>
    <dc:creator>vinod_gunaware2</dc:creator>
    <dc:date>2006-03-02T10:57:09Z</dc:date>
    <item>
      <title>String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226216#M137954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I turn this string:&lt;/P&gt;&lt;P&gt;20090914&lt;/P&gt;&lt;P&gt;Into&lt;/P&gt;&lt;P&gt;14092009&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:50:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226216#M137954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T10:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226217#M137955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;str1&lt;EM&gt;0(2) = str&lt;/EM&gt;6(2).&lt;/P&gt;&lt;P&gt;str1&lt;EM&gt;2(2) = str&lt;/EM&gt;4(2).&lt;/P&gt;&lt;P&gt;str1&lt;EM&gt;4(4) = str&lt;/EM&gt;0(4).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226217#M137955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T10:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226218#M137956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;concatenate string&lt;EM&gt;6(2) string&lt;/EM&gt;4(2) string+0(4) into new_string.&lt;/P&gt;&lt;P&gt;condense new_string&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:53:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226218#M137956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T10:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226219#M137957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe if it is for output, this may be interesting for display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : date type d,&lt;/P&gt;&lt;P&gt;       output(15).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write date to output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:54:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226219#M137957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T10:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226220#M137958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;suppose ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_char = '20090914'.&lt;/P&gt;&lt;P&gt;s_char2&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;concatenate s_char&lt;EM&gt;6(2) s_char&lt;/EM&gt;4(2) s_char+0(4) into s_char2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Sriranjani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226220#M137958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T10:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226221#M137959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi tomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Just copy paste in new program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : d1(8) TYPE c.&lt;/P&gt;&lt;P&gt;DATA : d2(8) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d1 = '20090914'.&lt;/P&gt;&lt;P&gt;CONCATENATE d1&lt;EM&gt;6(2)  d1&lt;/EM&gt;4(2)  d1(4) INTO d2.&lt;/P&gt;&lt;P&gt;WRITE d2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:55:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226221#M137959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T10:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226222#M137960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:55:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226222#M137960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T10:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226223#M137961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U have to use &lt;/P&gt;&lt;P&gt;shift statement left or right&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shifting a String by a Given Number of Positions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT &amp;lt;c&amp;gt; [BY &amp;lt;n&amp;gt; PLACES] [&amp;lt;mode&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement shifts the field &amp;lt;c&amp;gt; by &amp;lt;n&amp;gt; positions. If you omit BY &amp;lt;n&amp;gt; PLACES, &amp;lt;n&amp;gt; is interpreted as one. If &amp;lt;n&amp;gt; is 0 or negative, &amp;lt;c&amp;gt; remains unchanged. If &amp;lt;n&amp;gt; exceeds the length of &amp;lt;c&amp;gt;, &amp;lt;c&amp;gt; is filled out with blanks. &amp;lt;n&amp;gt; can be variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the different &amp;lt;mode&amp;gt; options, you can shift the field &amp;lt;c&amp;gt; in the following ways:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;mode&amp;gt; is LEFT: &lt;/P&gt;&lt;P&gt;Shifts the field contents &amp;lt;n&amp;gt; places to the left and adds &amp;lt;n&amp;gt; blanks at the right-hand end of the field (default).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;mode&amp;gt; is RIGHT:&lt;/P&gt;&lt;P&gt;Shift &amp;lt;n&amp;gt; positions to the right and adds &amp;lt;n&amp;gt; blanks at the left-hand end of the field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;mode&amp;gt; is CIRCULAR:&lt;/P&gt;&lt;P&gt;Shift &amp;lt;n&amp;gt; positions to the left so that &amp;lt;n&amp;gt; characters on the left appear on the right.&lt;/P&gt;&lt;P&gt;DATA: T(10) VALUE 'abcdefghij',&lt;/P&gt;&lt;P&gt;STRING LIKE T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;WRITE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT STRING.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;SHIFT STRING BY 3 PLACES LEFT.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;SHIFT STRING BY 3 PLACES RIGHT.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;SHIFT STRING BY 3 PLACES CIRCULAR.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abcdefghij&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bcdefghij&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;defghij&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   abcdefg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;defghijabc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u can use var &lt;/P&gt;&lt;P&gt;var = Concatenation var+ 0(10) ,....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regard&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:57:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226223#M137961</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-03-02T10:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226224#M137962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT  YCHATEST                                .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : date1(8) value '20090914',&lt;/P&gt;&lt;P&gt;       date2(8).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate date1&lt;EM&gt;6(2) date1&lt;/EM&gt;4(2) date1+0(4) into date2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       write : date2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226224#M137962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T10:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226225#M137963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_sel(8) type c value '20090914'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate v_sel+6(2)&lt;/P&gt;&lt;P&gt;            v_sel+4(2)&lt;/P&gt;&lt;P&gt;            v_sel+0(4)&lt;/P&gt;&lt;P&gt;       into v_sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: v_sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 11:01:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226225#M137963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T11:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226226#M137964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all response &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points are coming up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Tomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 11:03:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226226#M137964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T11:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226227#M137965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi for printing use the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: p1(8) value '20090914',&lt;/P&gt;&lt;P&gt;      p2 type d.&lt;/P&gt;&lt;P&gt;  p2 = p1.&lt;/P&gt;&lt;P&gt;  write:/ p2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ p1&lt;EM&gt;6(2),p1&lt;/EM&gt;4(2),p1+0(4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if this suits, reward with points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 16:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-problem/m-p/1226227#M137965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T16:32:03Z</dc:date>
    </item>
  </channel>
</rss>

