<?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: Pick up only numeric values from a string. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223275#M1009085</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; you can move those values to variables which is of data type N.It will move only numeric values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Veeresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jul 2008 11:00:51 GMT</pubDate>
    <dc:creator>former_member673464</dc:creator>
    <dc:date>2008-07-15T11:00:51Z</dc:date>
    <item>
      <title>Pick up only numeric values from a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223274#M1009084</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;We have a requirement to pick up only numeric characters from a string which contains both numeric and non-numeric characters.e.g If string contains value 12345abc,we need to pick only 12345.Are there any function modules for this or any methods. Any inputs will be highly appreciated with points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 10:58:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223274#M1009084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T10:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Pick up only numeric values from a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223275#M1009085</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; you can move those values to variables which is of data type N.It will move only numeric values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Veeresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 11:00:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223275#M1009085</guid>
      <dc:creator>former_member673464</dc:creator>
      <dc:date>2008-07-15T11:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Pick up only numeric values from a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223276#M1009086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
data: lv_char type c length 20 value '12ab34c5'.
data: lv_num type n length 10.

lv_num = lv_data.

write lv_num.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thats it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 11:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223276#M1009086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T11:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Pick up only numeric values from a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223277#M1009087</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;do this way ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: v_char(15) value '12345abcd'.

translate v_char using 'a b c d '.

condense v_char no-gaps.
write : v_char. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 11:05:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pick-up-only-numeric-values-from-a-string/m-p/4223277#M1009087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T11:05:34Z</dc:date>
    </item>
  </channel>
</rss>

