<?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: Remove special characters in string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153977#M993227</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for this use the replace all occurances&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jul 2008 14:14:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-24T14:14:15Z</dc:date>
    <item>
      <title>Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153975#M993225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm Portuguese, and in our language we use special characters in words like "João or "Sónia".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to take off these special characters, which means I want to have the same words like "Joao" and "Sonia", without the characters "~" or "´". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea how can I do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sónia Gonçalves&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:11:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153975#M993225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T14:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153976#M993226</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;language which are viewing is depending on your language at login time. Try to login with "EN" as Language selection you will get the desired output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153976#M993226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T14:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153977#M993227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for this use the replace all occurances&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:14:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153977#M993227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T14:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153978#M993228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for this use &lt;STRONG&gt;the replace  all occurances of&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:char(5) value 'Sónia'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       replace all occurrences of 'ó' in char with 'o' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     write: char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:15:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153978#M993228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T14:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153979#M993229</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;But I want to make this generic, I don't want to replace character by character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I give a string in the program, I want to search all ocurrences of these special characters and replace them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do this?&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;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sónia Gonçalves&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153979#M993229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T14:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153980#M993230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;I don't want to replace character by character&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE string USING 'ÑNñnÓOóo...'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153980#M993230</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-07-24T14:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153981#M993231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out this function SCP_REPLACE_STRANGE_CHARS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153981#M993231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T14:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153982#M993232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Check out this function SCP_REPLACE_STRANGE_CHARS&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very nice.  But it replaces Ö Ä Ü with Oe Ae Ue instead of OE AE UE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems great with Portugese accents though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:37:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153982#M993232</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-07-24T14:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153983#M993233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe it's the codepage? I've only use it to remove accents and the ñ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153983#M993233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T14:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153984#M993234</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;The function SCP_REPLACE_STRANGE_CHARS is just what I need!! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sónia Gonçalves&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 14:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153984#M993234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T14:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153985#M993235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's absolutely correct to replace Ö with OE.  My point was it's replacing them with Oe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 15:01:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153985#M993235</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-07-24T15:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153986#M993236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sonia -&amp;gt; The points should have gone to  Ramiro Escamilla, not me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2008 06:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-special-characters-in-string/m-p/4153986#M993236</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-07-25T06:17:15Z</dc:date>
    </item>
  </channel>
</rss>

