<?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: Delete special character from string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183864#M758058</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,.&lt;/P&gt;&lt;P&gt;data:out(10).&lt;/P&gt;&lt;P&gt;out = 'AaAaBbBb'.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF 'a' IN out WITH ' '.&lt;/P&gt;&lt;P&gt;write out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls Reward with points......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgrds,&lt;/P&gt;&lt;P&gt;Kumaresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Dec 2007 09:24:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-18T09:24:33Z</dc:date>
    <item>
      <title>Delete special character from string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183861#M758055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how cann i delete a speacial character from a dataset.&lt;/P&gt;&lt;P&gt;f.e. delete 'a' from 'AaAaBbBb' returns 'AABbBb'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;TomSd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 09:17:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183861#M758055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T09:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delete special character from string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183862#M758056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tp_output = 'AaAaBbBb'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE 'a' WITH space INTO tp_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your output will look like  'A A BbBb'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you finally condense it to remove spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONDENSE tp_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it will look like your desired result 'AABbBb'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;William Wilstroth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: william wilstroth on Dec 18, 2007 5:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 09:19:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183862#M758056</guid>
      <dc:creator>Wil_Wilstroth</dc:creator>
      <dc:date>2007-12-18T09:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Delete special character from string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183863#M758057</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 the code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_string = 'AaAaBbBb' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_string ca 'a'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace 'a' with ' ' into v_string.&lt;/P&gt;&lt;P&gt;condense v_string with no-gaps.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Kannaiah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 09:24:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183863#M758057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T09:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Delete special character from string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183864#M758058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,.&lt;/P&gt;&lt;P&gt;data:out(10).&lt;/P&gt;&lt;P&gt;out = 'AaAaBbBb'.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF 'a' IN out WITH ' '.&lt;/P&gt;&lt;P&gt;write out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls Reward with points......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgrds,&lt;/P&gt;&lt;P&gt;Kumaresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 09:24:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183864#M758058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T09:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Delete special character from string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183865#M758059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,.&lt;/P&gt;&lt;P&gt;data:out(10).&lt;/P&gt;&lt;P&gt;out = 'AaAaBbBb'.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF 'a' IN out WITH ' '.&lt;/P&gt;&lt;P&gt;write out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls Reward with points......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgrds,&lt;/P&gt;&lt;P&gt;Kumaresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 09:26:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183865#M758059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T09:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Delete special character from string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183866#M758060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wk_var = ''AaAaBbBb' &lt;/P&gt;&lt;P&gt;replace all occurrences of 'a' in wk_var  with space.&lt;/P&gt;&lt;P&gt;condense wk_var.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 09:26:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183866#M758060</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2007-12-18T09:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Delete special character from string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183867#M758061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use REPLACE ALL OCCURENCES OF 'a' WITH ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will do,,&lt;/P&gt;&lt;P&gt;Reward if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 09:52:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-special-character-from-string/m-p/3183867#M758061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T09:52:14Z</dc:date>
    </item>
  </channel>
</rss>

