<?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 : REPLACE OPERATION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304444#M159602</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rajesh,&lt;/P&gt;&lt;P&gt;replace 'D' in string with space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award if it helps.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 May 2006 11:12:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-25T11:12:53Z</dc:date>
    <item>
      <title>STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304438#M159596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;for the code :&lt;/P&gt;&lt;P&gt;data : string(4) type c.&lt;/P&gt;&lt;P&gt;string = 'ASDF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOW I WANT TO REPLACE D IN STRING WITH SPACE ie ' '.&lt;/P&gt;&lt;P&gt;but when i use&lt;/P&gt;&lt;P&gt;Replace d in string with ' '.&lt;/P&gt;&lt;P&gt;then the output is 'ASF' ..NO SPACE IS BEING INSERTED.&lt;/P&gt;&lt;P&gt;CAN NYONE HELP ME HOW TO REPLACE D WITH SPACE....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304438#M159596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304439#M159597</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;Split str at 'd' into str1 str2.&lt;/P&gt;&lt;P&gt;concatenate str1 str2 into str seperated by space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:07:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304439#M159597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304440#M159598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;split string at 'D' into str1 str2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate str1 str2 separated by space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:07:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304440#M159598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304441#M159599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try 'translate' instead of 'replace'..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;translate s using 'D '.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:07:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304441#M159599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304442#M159600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use &amp;lt;b&amp;gt;Translate&amp;lt;/b&amp;gt; Statement or do this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Data : v_string type string,&lt;/P&gt;&lt;P&gt;         STR1,STR2,STR3 TYPE STRING.&lt;/P&gt;&lt;P&gt;         v_string = 'ASDF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         SPLIT V_STRING AT 'D' INTO STR1 STR2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         CONCATENATE STR1 STR2 INTO STR3 SEPARATED BY SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         WRITE STR3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304442#M159600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304443#M159601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare STR2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE all occurances of 'D' WITH space INTO STR2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:10:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304443#M159601</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2006-05-25T11:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304444#M159602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rajesh,&lt;/P&gt;&lt;P&gt;replace 'D' in string with space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award if it helps.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:12:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304444#M159602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304445#M159603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE &amp;lt;str1&amp;gt; WITH &amp;lt;str2&amp;gt; INTO &amp;lt;c&amp;gt; [LENGTH &amp;lt;l&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace D with ' ' into str1.&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;Laxmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304445#M159603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304446#M159604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI RAJESH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: p type string value 'asdf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Replace 'd' with ' ' into p.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;write:/ p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:22:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304446#M159604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304447#M159605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ZNEGIDEMO .&lt;/P&gt;&lt;P&gt;DATA: A(4) TYPE C,&lt;/P&gt;&lt;P&gt;A1(20) VALUE 'ABCDE'.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF 'D' IN a1 with space.&lt;/P&gt;&lt;P&gt;write a1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND  ALSO SEE THIS  LINK  UR  ALL POINTS  ARE CLEAR....&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1663078"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: kishan negi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:30:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304447#M159605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304448#M159606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;Replace d in string with ` `.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;NOte that the quotes are not ' but `(The key above the tab key in the keyboard.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 11:32:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304448#M159606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T11:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304449#M159607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANX RAVI IT WORKED THAX A LOT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 12:01:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304449#M159607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T12:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: STRING : REPLACE OPERATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304450#M159608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did u check my reply that also works.&lt;/P&gt;&lt;P&gt;try checking that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2006 12:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-replace-operation/m-p/1304450#M159608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-25T12:09:12Z</dc:date>
    </item>
  </channel>
</rss>

