<?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: processing string-- still having problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052009#M89466</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;for helful answers please reward .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Dec 2005 16:44:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-01T16:44:53Z</dc:date>
    <item>
      <title>processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052005#M89462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; i need to remove all spaces in a string immediately after ',' but not all .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg :&lt;/P&gt;&lt;P&gt; name = first,  middle last&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after processing it should appear as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        first,middle last.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace ', ' with ',' into name ...doesn't seems to be working. is there any way to do that in a single statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your help would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kranthi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: kranthi kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 16:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052005#M89462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T16:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052006#M89463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it worked for me... see below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : name(40).&lt;/P&gt;&lt;P&gt;name = 'first, middle last'.&lt;/P&gt;&lt;P&gt;replace ', ' with ',' into name.&lt;/P&gt;&lt;P&gt;write : name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 16:38:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052006#M89463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T16:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052007#M89464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kranthi,&lt;/P&gt;&lt;P&gt;try this....&lt;/P&gt;&lt;P&gt;REPLACE FIRST OCCURRENCE OF '' IN name WITH ','. &lt;/P&gt;&lt;P&gt;REPLACE FIRST OCCURRENCE OF ',,' IN name WITH ','. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagrds&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 16:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052007#M89464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T16:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052008#M89465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: l_str type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_str = 'First , Middle Last'.&lt;/P&gt;&lt;P&gt;write:/ l_str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace ' , ' with ',' into l_str.&lt;/P&gt;&lt;P&gt;write:/ l_str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;First , Middle Last&lt;/P&gt;&lt;P&gt;First,Middle Last  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;worked for me too.&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 16:44:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052008#M89465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T16:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052009#M89466</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;for helful answers please reward .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 16:44:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052009#M89466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T16:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052010#M89467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;however, if there is MORE than one SPACE after COMMA it doesn't work ,could you let me know more feasible solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kranthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 16:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052010#M89467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T16:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052011#M89468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think You requirement will not allow you to use condense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i will find some thing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 16:52:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052011#M89468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T16:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052012#M89469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the CONDENSE command&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 16:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052012#M89469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T16:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052013#M89470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Condense is not working...but i need to remove spaces Immediately after ','&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kranthi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: kranthi kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 17:01:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052013#M89470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T17:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052014#M89471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONDENSE NO-GAPS will remove all spaces, but just CONDENSE will remove all but one spaces.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 17:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052014#M89471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T17:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052015#M89472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : w_str1(40),&lt;/P&gt;&lt;P&gt;       w_str2 like name.&lt;/P&gt;&lt;P&gt;split name at ',' into w_str1 w_str2.&lt;/P&gt;&lt;P&gt;shift w_str2 left deleting leading space.&lt;/P&gt;&lt;P&gt;concatenate w_str1 ',' w_str2 into name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 17:06:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052015#M89472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T17:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: processing string-- still having problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052016#M89473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kranthi,&lt;/P&gt;&lt;P&gt; Try to use the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: test(15),&lt;/P&gt;&lt;P&gt;      test1(10),&lt;/P&gt;&lt;P&gt;      test2(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   test = 'first,  last'.&lt;/P&gt;&lt;P&gt;split test at ',' into test1 test2.&lt;/P&gt;&lt;P&gt;condense test2.&lt;/P&gt;&lt;P&gt;concatenate test1 ',' test2 into test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ test .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2005 17:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-string-still-having-problem/m-p/1052016#M89473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-01T17:14:03Z</dc:date>
    </item>
  </channel>
</rss>

