<?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: Split a string. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457046#M1056498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;Below is the syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT &amp;lt;c&amp;gt; AT &amp;lt;del&amp;gt; INTO &amp;lt;c1&amp;gt;... &amp;lt;cn&amp;gt; INTO TABLE &amp;lt;itab&amp;gt;&lt;/P&gt;&lt;P&gt;                  [IN BYTE MODE|IN CHARACTER MODE].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement searches the character field &amp;lt;c&amp;gt; for delimiter strings &amp;lt;del&amp;gt; and the parts before and after the delimiters are placed in the target fields &amp;lt;c1&amp;gt; ...&amp;gt; u2026 &amp;lt;cn&amp;gt;, or into a new line of the internal table &amp;lt;itab&amp;gt;. In Unicode programs, you must specify whether the statement is a character or byte operation, using the IN BYTE MODE or IN CHARACTER MODE (default) additions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use this if this could help you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashutosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Sep 2008 09:31:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-12T09:31:26Z</dc:date>
    <item>
      <title>Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457038#M1056490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In our project there is requirement wherein we have to split a string.can we split a string into n no. of parts.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 05:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457038#M1056490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T05:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457039#M1056491</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;&lt;/P&gt;&lt;P&gt;use this syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT f AT g INTO h1 ... hn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this excample provided by &lt;STRONG&gt;SAP&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples&lt;/P&gt;&lt;P&gt;DATA: NAMES(30)    TYPE C VALUE 'Charly, John , Peter', &lt;/P&gt;&lt;P&gt;      NAMES2       TYPE STRING, &lt;/P&gt;&lt;P&gt;      ONE(10)      TYPE C, &lt;/P&gt;&lt;P&gt;      TWO(10)      TYPE C, &lt;/P&gt;&lt;P&gt;      THREE        TYPE STRING, &lt;/P&gt;&lt;P&gt;      FOUR(4)      TYPE C VALUE 'FOUR', &lt;/P&gt;&lt;P&gt;      DELIMITER(2) VALUE ','. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT NAMES AT DELIMITER INTO ONE TWO. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly' and TWO contains 'John , Pet'. &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SY-SUBRC is 4, because TWO was not large enough to &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    accommodate the whole of the remaining string &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SPLIT NAMES AT ',' INTO ONE TWO THREE. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly', TWO contains ' John', &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    THREE contains ' Peter'. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SPLIT NAMES AT ', ' INTO ONE THREE TWO. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly', THREE contains 'John', &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    TWO contains 'Peter'. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CONCATENATE NAMES '' INTO NAMES2 SEPARATED BY SPACE. &lt;/P&gt;&lt;P&gt;SPLIT NAMES2 AT DELIMITER INTO ONE TWO THREE FOUR. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly', TWO contains 'John', &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    THREE contains 'Peter ', FOUR is empty. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SPLIT NAMES2 AT DELIMITER INTO ONE FOUR THREE. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly', FOUR contains 'John', &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    THREE contains 'Peter', SY-SUBRC is 4, since &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    FOUR was not large enough (spaces are significant &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    characters!)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 05:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457039#M1056491</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-09-12T05:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457040#M1056492</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;You can Split a String In Any no of Parts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will find SPLIT syntax in Help document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 05:33:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457040#M1056492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T05:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457041#M1056493</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;Search in SDN with key word SPLIT or use F1 help in u r ABAP editor .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also Check this link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_46c/helpdata/EN/fc/eb3400358411d1829f0000e829fbfe/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin M M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 05:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457041#M1056493</guid>
      <dc:creator>sachin_mathapati</dc:creator>
      <dc:date>2008-09-12T05:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457042#M1056494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            see the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: NAMES(30)    TYPE C VALUE 'Charly, John , Peter', &lt;/P&gt;&lt;P&gt;      NAMES2       TYPE STRING, &lt;/P&gt;&lt;P&gt;      ONE(10)      TYPE C, &lt;/P&gt;&lt;P&gt;      TWO(10)      TYPE C, &lt;/P&gt;&lt;P&gt;      THREE        TYPE STRING, &lt;/P&gt;&lt;P&gt;      FOUR(4)      TYPE C VALUE 'FOUR', &lt;/P&gt;&lt;P&gt;      DELIMITER(2) VALUE ','. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT NAMES AT DELIMITER INTO ONE TWO. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly' and TWO contains 'John , Pet'. &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SY-SUBRC is 4, because TWO was not large enough to &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    accommodate the whole of the remaining string &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SPLIT NAMES AT ',' INTO ONE TWO THREE. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly', TWO contains ' John', &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    THREE contains ' Peter'. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SPLIT NAMES AT ', ' INTO ONE THREE TWO. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly', THREE contains 'John', &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    TWO contains 'Peter'. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CONCATENATE NAMES '' INTO NAMES2 SEPARATED BY SPACE. &lt;/P&gt;&lt;P&gt;SPLIT NAMES2 AT DELIMITER INTO ONE TWO THREE FOUR. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly', TWO contains 'John', &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    THREE contains 'Peter ', FOUR is empty. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SPLIT NAMES2 AT DELIMITER INTO ONE FOUR THREE. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ONE contains 'Charly', FOUR contains 'John', &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    THREE contains 'Peter', SY-SUBRC is 4, since &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    FOUR was not large enough (spaces are significant &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    characters!) &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mahesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 05:37:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457042#M1056494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T05:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457043#M1056495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi suresh Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can split  a string into parts as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  string(50) TYPE c VALUE 'Venkat,Srinivas,Bhrammam',&lt;/P&gt;&lt;P&gt;  w_variable1(10) TYPE c,&lt;/P&gt;&lt;P&gt;  w_variable2(10) TYPE c,&lt;/P&gt;&lt;P&gt;  w_variable3(10) TYPE c,&lt;/P&gt;&lt;P&gt;  partition TYPE c VALUE ','.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT string AT partition INTO w_variable1 w_variable2 w_variable3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:&lt;/P&gt;&lt;P&gt;  / w_variable1,w_variable2,w_variable3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rama.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 05:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457043#M1056495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T05:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457044#M1056496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Splitting Character Strings&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To split a character string into two or more smaller strings, use the SPLIT statement as follows:&lt;/P&gt;&lt;P&gt;SPLIT &amp;lt;c&amp;gt; AT &amp;lt;del&amp;gt; INTO &amp;lt;c1&amp;gt; ... &amp;lt;cn&amp;gt;.&lt;/P&gt;&lt;P&gt;The system searches the field &amp;lt;c&amp;gt; for the separator &amp;lt;del&amp;gt;. The parts before and after the&lt;/P&gt;&lt;P&gt;separator are placed in the target fields &amp;lt;c1&amp;gt; ... &amp;lt;cn&amp;gt;.&lt;/P&gt;&lt;P&gt;To place all fragments in different target fields, you must specify enough target fields. Otherwise,&lt;/P&gt;&lt;P&gt;the last target field is filled with the rest of the field &amp;lt;c&amp;gt; and still contains delimiters.&lt;/P&gt;&lt;P&gt;If all target fields are long enough and no fragment has to be truncated, SY-SUBRC is set to 0.&lt;/P&gt;&lt;P&gt;Otherwise it is set to 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: STRING(60),&lt;/P&gt;&lt;P&gt;P1(20) VALUE '++++++++++++++++++++',&lt;/P&gt;&lt;P&gt;P2(20) VALUE '++++++++++++++++++++',&lt;/P&gt;&lt;P&gt;P3(20) VALUE '++++++++++++++++++++',&lt;/P&gt;&lt;P&gt;P4(20) VALUE '++++++++++++++++++++',&lt;/P&gt;&lt;P&gt;DEL(3) VALUE '***'.&lt;/P&gt;&lt;P&gt;STRING = ' Part 1 *** Part 2 *** Part 3 *** Part 4 *** Part 5'.&lt;/P&gt;&lt;P&gt;WRITE STRING.&lt;/P&gt;&lt;P&gt;SPLIT STRING AT DEL INTO P1 P2 P3 P4.&lt;/P&gt;&lt;P&gt;WRITE / P1.&lt;/P&gt;&lt;P&gt;WRITE / P2.&lt;/P&gt;&lt;P&gt;WRITE / P3.&lt;/P&gt;&lt;P&gt;WRITE / P4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output appears as follows:&lt;/P&gt;&lt;P&gt;Part 1 *** Part 2 *** Part 3 *** Part 4 *** Part 5&lt;/P&gt;&lt;P&gt;Part 1&lt;/P&gt;&lt;P&gt;Part 2&lt;/P&gt;&lt;P&gt;Part 3&lt;/P&gt;&lt;P&gt;Part 4 *** Part 5&lt;/P&gt;&lt;P&gt;Note that the contents of the fields P1 ...P4 are totally overwritten and that they are&lt;/P&gt;&lt;P&gt;filled out with trailing blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also split a string into the individual lines of an internal table as follows:&lt;/P&gt;&lt;P&gt;SPLIT &amp;lt;c&amp;gt; AT &amp;lt;del&amp;gt; INTO TABLE &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;The system adds a new line to the internal table &amp;lt;itab&amp;gt; for each part of the string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 06:00:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457044#M1056496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T06:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457045#M1056497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this example code ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF file_all OCCURS 0,
          all(1000) TYPE c,
        END OF file_all.
CALL FUNCTION 'UPLOAD_FILES'
       EXPORTING
*           i_trunclen = ''
            i_filetype = 'ASC'
            i_xpc      = i_xpc
       TABLES
            file_all   = file_all
            tab_file   = tab_file
       EXCEPTIONS
            error_file = 1
            OTHERS     = 2.

  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.

  LOOP AT file_all.

    SPLIT file_all AT ';' INTO it_file-bankl
                               it_file-banka
                               it_file-provz
                               it_file-stras
                               it_file-ort01
                               it_file-swift
                               it_file-bnklz
                               it_file-brnch.

"ur code...........
Endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 06:09:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457045#M1056497</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2008-09-12T06:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Split a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457046#M1056498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;Below is the syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT &amp;lt;c&amp;gt; AT &amp;lt;del&amp;gt; INTO &amp;lt;c1&amp;gt;... &amp;lt;cn&amp;gt; INTO TABLE &amp;lt;itab&amp;gt;&lt;/P&gt;&lt;P&gt;                  [IN BYTE MODE|IN CHARACTER MODE].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement searches the character field &amp;lt;c&amp;gt; for delimiter strings &amp;lt;del&amp;gt; and the parts before and after the delimiters are placed in the target fields &amp;lt;c1&amp;gt; ...&amp;gt; u2026 &amp;lt;cn&amp;gt;, or into a new line of the internal table &amp;lt;itab&amp;gt;. In Unicode programs, you must specify whether the statement is a character or byte operation, using the IN BYTE MODE or IN CHARACTER MODE (default) additions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use this if this could help you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashutosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 09:31:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-a-string/m-p/4457046#M1056498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T09:31:26Z</dc:date>
    </item>
  </channel>
</rss>

