<?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 Remove SPL character from the string. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923796#M1148901</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 need to remove the ANY SPL character from the given string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the input = 1234#890.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then the output should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1234890.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Shiva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Dec 2008 19:41:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-26T19:41:47Z</dc:date>
    <item>
      <title>Remove SPL character from the string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923796#M1148901</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 need to remove the ANY SPL character from the given string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the input = 1234#890.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then the output should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1234890.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Shiva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 19:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923796#M1148901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T19:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Remove SPL character from the string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923797#M1148902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this Logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report:test.
data:value TYPE string VALUE '1234#890',
      num TYPE i,
      result TYPE char35,
BEGIN OF atext_tab OCCURS 0 ,
  text TYPE c,
  END OF  atext_tab.
CALL FUNCTION 'SOTR_SERV_STRING_TO_TABLE'
  EXPORTING
    text                      = value
*   FLAG_NO_LINE_BREAKS       = 'X'
   LINE_LENGTH               = 1
*   LANGU                     = SY-LANGU
  tables
    text_tab                  = atext_tab
          .

LOOP AT atext_tab .
  if atext_tab-text ca '! @ # $ % ^ &amp;amp; * '.
      delete atext_tab INDEX sy-tabix.
      else.
       CONCATENATE result atext_tab-text  into result.
    endif.
ENDLOOP.
WRITE result.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 20:26:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923797#M1148902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T20:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Remove SPL character from the string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923798#M1148903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also can try like, by using CONTAINS NOT-CN, we can achieve this, but, need to write all 0 to 9 and A to Z characters in CONTIANS NOT synstax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanq&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 20:38:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923798#M1148903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T20:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Remove SPL character from the string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923799#M1148904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Dec 2008 21:54:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-spl-character-from-the-string/m-p/4923799#M1148904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-26T21:54:23Z</dc:date>
    </item>
  </channel>
</rss>

