<?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 Splitting a string in different substrings in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147148#M1192813</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to split a string of any length in new substrings and want to save these substrings in different variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried as following:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:
      string type string value 'Hallo SAP world',  "This could be any string with any lenght
      offset type i value 0,
      str_len type i,
      new_str type string.

str_len = strlen( string ).

do 5 times.
  new_str = string+offset(3).
  write : new_str.
  write : ' '.

  offset = offset + 3.
   enddo.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1_ Has anyone any idea, how to save the new substrings in different variables?&lt;/P&gt;&lt;P&gt;2_ Since the new substring has length 3. So how many times should the do-loop run?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;ama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Jan 2009 09:16:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-27T09:16:34Z</dc:date>
    <item>
      <title>Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147148#M1192813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to split a string of any length in new substrings and want to save these substrings in different variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried as following:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:
      string type string value 'Hallo SAP world',  "This could be any string with any lenght
      offset type i value 0,
      str_len type i,
      new_str type string.

str_len = strlen( string ).

do 5 times.
  new_str = string+offset(3).
  write : new_str.
  write : ' '.

  offset = offset + 3.
   enddo.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1_ Has anyone any idea, how to save the new substrings in different variables?&lt;/P&gt;&lt;P&gt;2_ Since the new substring has length 3. So how many times should the do-loop run?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;ama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147148#M1192813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T09:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147149#M1192814</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;Check this FM RKD_WORD_WRAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Function module              RKD_WORD_WRAP

  Import parameters               Value

  TEXTLINE                        THIS IS THE STRING
  DELIMITER
  OUTPUTLEN                       3

  Export parameters               Value

  OUT_LINE1                       THI
  OUT_LINE2                       S
  OUT_LINE3                       IS

  Tables                          Value

  OUT_LINES                          0 Entries
                   Result:           7 Entries&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147149#M1192814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T09:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147150#M1192815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi use this FM RKD_WORD_WRAP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147150#M1192815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T09:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147151#M1192816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of saving into different variables..try using an internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take one column in this table of type string.&lt;/P&gt;&lt;P&gt;Then use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT  command into internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will split the string as you want and specifying the internal table would fetch all the split strings into an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:29:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147151#M1192816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T09:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147152#M1192817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM TR_SPLIT_TEXT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:30:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147152#M1192817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T09:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147153#M1192818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check these fms&lt;/P&gt;&lt;P&gt;STRING_SPLIT&lt;/P&gt;&lt;P&gt;SWA_STRING_SPLIT&lt;/P&gt;&lt;P&gt;TEXT_SPLIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="16" __jive_macro_name="size"&gt;кu03B1ятu03B9к&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:32:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147153#M1192818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T09:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147154#M1192819</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;thanks for your suggestions. Since I am a newbie, it'll take some time to implement them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:32:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147154#M1192819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T09:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147155#M1192820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your suggestion. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I assign values to OUT_LINE?&lt;/P&gt;&lt;P&gt;Can this function be used for strings having more than 9 characters?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'RKD_WORD_WRAP'

  IMPORTING
    textline                  = string       "string = 'Hallo SAP world' or any other string
*   DELIMITER                 = ' '
   OUTPUTLEN                 = 3

 EXPORTING
   OUT_LINE1                 = 
   OUT_LINE2                 =
   OUT_LINE3                 =
* TABLES
*   OUT_LINES                 =
* EXCEPTIONS
   OUTPUTLEN_TOO_LARGE       = 1
   OTHERS                    = 2
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;ama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147155#M1192820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T09:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147156#M1192821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Muhammed Aftab Alam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test the following Sample code it working the same way you are requiring, I have Tested,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT zfsl_sub_string.

DATA: main_string TYPE string,
      len_string TYPE i,
      reminder TYPE i,
      string_from TYPE i.
main_string = 'Hallo SAP World'. " You can give any string here.
len_string = STRLEN( main_string ).

DO 3 TIMES.
  reminder = len_string MOD 3.
  IF reminder NE 0.
    CONCATENATE main_string ' ' into main_string SEPARATED BY space.
  len_string = strlen( main_string ).
  ENDIF.
ENDDO.
len_string = len_string div 3.

string_from = 0.
DO len_string TIMES.
  WRITE: / main_string+string_from(3).
  ADD 3 TO : string_from.
ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following too the same as above just add PARAMETER for input String&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT zfsl_sub_string.

PARAMETERS: pstring TYPE string.

DATA: "pstring TYPE string,
      len_string TYPE i,
      reminder TYPE i,
      string_from TYPE i.
*pstring = 'Hallo SAP World'. " You can give any string here.
len_string = STRLEN( pstring ).

DO 3 TIMES.
  reminder = len_string MOD 3.
  IF reminder NE 0.
    CONCATENATE pstring ' ' into pstring SEPARATED BY space.
  len_string = strlen( pstring ).
  ENDIF.
ENDDO.
len_string = len_string div 3.

string_from = 0.
DO len_string TIMES.
  WRITE: / pstring+string_from(3).
  ADD 3 TO : string_from.
ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any Problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Faisal Altaf on Jan 27, 2009 3:06 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 09:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147156#M1192821</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-01-27T09:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147157#M1192822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo Faisal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it works fine, but the substrings must be saved in different variables, i.e.  var1=Hall, var2= lo (first place of var2 is space) and so on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 10:09:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147157#M1192822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T10:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147158#M1192823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Muhammed Aftab Alam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Above code didnu2019t solve your problem? If not please tell me you else requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 10:11:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147158#M1192823</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-01-27T10:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147159#M1192824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Muhammed Aftab Alam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test the following code here i am appending these sub string to an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: pstring TYPE string.

TYPES: BEGIN OF t_it,
  sub_string(3),
  END OF t_it.

DATA: it TYPE STANDARD TABLE OF t_it WITH HEADER LINE,
      len_string TYPE i,
      reminder TYPE i,
      string_from TYPE i.
*pstring = 'Hallo SAP World'. " You can give any string here.
len_string = STRLEN( pstring ).

DO 3 TIMES.
  reminder = len_string MOD 3.
  IF reminder NE 0.
    CONCATENATE pstring ' ' into pstring SEPARATED BY space.
  len_string = strlen( pstring ).
  ENDIF.
ENDDO.
len_string = len_string div 3.

string_from = 0.
DO len_string TIMES.
  it-sub_string = pstring+string_from(3).
  "WRITE: / pstring+string_from(3).
  ADD 3 TO : string_from.
  APPEND it to it.
ENDDO.

LOOP AT it into it.

WRITE: / it.

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any Question &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 10:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147159#M1192824</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-01-27T10:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147160#M1192825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo Faisal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the rapid reply. How can i call a particular substring? Since I have to do some functions with the substrings, they must be save in different veriables. Sorry for asking samll things.&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;ama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 10:29:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147160#M1192825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T10:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147161#M1192826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Muhammed Aftab Alam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you give the string 'Hallo SAP World' it will divide this String to 5 sub Strings and in the other world when you talk about the Internal Table it will Append 5 Lines to table. Now you can read any line from internal table giving the specific INDEX Number. Using following READ TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;READ TABLE it INTO it INDEX 4.
WRITE: / it-sub_string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above code will Return you the 4th Sub String&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 10:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147161#M1192826</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-01-27T10:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a string in different substrings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147162#M1192827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;many thanks. Problem is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 10:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/splitting-a-string-in-different-substrings/m-p/5147162#M1192827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T10:53:24Z</dc:date>
    </item>
  </channel>
</rss>

