<?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 operations in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655760#M880622</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhumita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Key word SPLIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: str1 TYPE string, &lt;/P&gt;&lt;P&gt;str2 TYPE string, &lt;/P&gt;&lt;P&gt;str3 TYPE string, &lt;/P&gt;&lt;P&gt;itab TYPE TABLE OF string, &lt;/P&gt;&lt;P&gt;text TYPE string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text = 'What a drag it is getting old'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT text AT space INTO: str1 str2 str3, &lt;/P&gt;&lt;P&gt;TABLE itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Kindly Reward Points If You Found The Reply Helpful&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Apr 2008 09:05:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-03T09:05:23Z</dc:date>
    <item>
      <title>string operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655757#M880619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cn anyone help me regarding the string operations . string splitting.&lt;/P&gt;&lt;P&gt;i need to split the valur from a field of a table into three parts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 08:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655757#M880619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T08:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: string operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655758#M880620</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;U can use the 'SPLIT' keyword. &lt;/P&gt;&lt;P&gt;Eg: SPLIT 'STOP Two STOP Three STOP   ' AT 'STOP' INTO TABLE ITAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Esha Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:00:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655758#M880620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T09:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: string operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655759#M880621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could you explain me the syntax with an example.. i couldn understand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655759#M880621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T09:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: string operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655760#M880622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhumita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Key word SPLIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: str1 TYPE string, &lt;/P&gt;&lt;P&gt;str2 TYPE string, &lt;/P&gt;&lt;P&gt;str3 TYPE string, &lt;/P&gt;&lt;P&gt;itab TYPE TABLE OF string, &lt;/P&gt;&lt;P&gt;text TYPE string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text = 'What a drag it is getting old'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT text AT space INTO: str1 str2 str3, &lt;/P&gt;&lt;P&gt;TABLE itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Kindly Reward Points If You Found The Reply Helpful&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655760#M880622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T09:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: string operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655761#M880623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SPLIT text AT space INTO: str1 str2 str3, TABLE itab. -- why do you use the table parameter here?&lt;/P&gt;&lt;P&gt;i don't understand its relevance. can you explain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655761#M880623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T09:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: string operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655762#M880624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give me the syntax.. 'm new to abap.. unable to understand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:10:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655762#M880624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T09:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: string operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655763#M880625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the sytax &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SPLIT dobj AT sep INTO 
      { {result1 result2 ...} | {TABLE result_tab} } 
      [ IN {BYTE|CHARACTER} MODE ].
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can decide if you want to insert it in an internal table or into variables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-operations/m-p/3655763#M880625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T09:27:53Z</dc:date>
    </item>
  </channel>
</rss>

