<?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: Numeric portion of string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764384#M1305433</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;Check :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:
  len TYPE i,
  i TYPE i VALUE 0,
  dtype LIKE dd01v-datatype.

PARAMETERS valuein(70).

len = STRLEN( valuein ).
WHILE i &amp;lt;= len.
  CALL FUNCTION 'NUMERIC_CHECK'
    EXPORTING
      string_in        = valuein+i(1)
   IMPORTING
     htype            = dtype
  .
  IF dtype = 'NUMC'.
    WRITE:   valuein+i(1) NO-GAP.
  ENDIF.
  i = i + 1.
ENDWHILE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Input   : 0ABC12DE3&lt;/P&gt;&lt;P&gt;output : 0123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Remi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Jun 2009 12:15:40 GMT</pubDate>
    <dc:creator>RemiKaimal</dc:creator>
    <dc:date>2009-06-15T12:15:40Z</dc:date>
    <item>
      <title>Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764375#M1305424</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;I want to extract the numeric portion of an alphanumeric string.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: ABC12345 - I want to get back 12345.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I go about this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 11:54:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764375#M1305424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T11:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764376#M1305425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can use the string operations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the below example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: l_var1(9) type c,&lt;/P&gt;&lt;P&gt;       l_var (9) type c.&lt;/P&gt;&lt;P&gt;l_var1 = 'ABC12345'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_var2 = l_var1+3(6)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output l_var2 =  12345&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764376#M1305425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764377#M1305426</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;Declare one numeric field like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_num(5) type n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  move 'ABC12345' to v_num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ v_num.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764377#M1305426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764378#M1305427</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;loop at your varaible... The first instance you come with the numeric characters put it ina diifernt variable..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can even declare a numeric variable and assign your value directly to it....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:07:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764378#M1305427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764379#M1305428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try out this sample code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA lv_wa TYPE string.&lt;/P&gt;&lt;P&gt;DATA lv_wab TYPE char30 VALUE 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.&lt;/P&gt;&lt;P&gt;DATA lv_ind TYPE i.&lt;/P&gt;&lt;P&gt;DATA lv_index TYPE i.&lt;/P&gt;&lt;P&gt;data text type string.&lt;/P&gt;&lt;P&gt;lv_wa = 'ABCD123456'.&lt;/P&gt;&lt;P&gt;lv_ind = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 10 TIMES.&lt;/P&gt;&lt;P&gt;  IF lv_wa+lv_ind(1) CN lv_wab.&lt;/P&gt;&lt;P&gt;    CONCATENATE text lv_wa+lv_ind(1) INTO text.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  lv_ind = lv_ind + 1.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U may have to make some small changes.but the logic will work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ansari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:09:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764379#M1305428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764380#M1305429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im not ware of any Fm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But u can build a logic for this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:len type i,
number(10) type c value '1234567890',
val type string,
output type string.
val = 'ABC12345'.
len = strlen( val ).

do len times.
sy-index = sy-index - 1.
if val+sy-index(1) ca number.
concatenate output val+sy-index(1) into output.
endif.
enddo.

write output.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764380#M1305429</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-06-15T12:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764381#M1305430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay, try the example code. It would work for all input strings irrespective of positioning of alphabets.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA str TYPE string.

str = 'ABC12345DEF789'.
WRITE:/ str.

REPLACE ALL OCCURRENCES OF REGEX '[a-zA-Z]*' IN str WITH space.
WRITE:/ str.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764381#M1305430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764382#M1305431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the sample code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data : w_string type string value ' ABC12345',
         count type i,
          w_strlen type I.

w_strlen = strlen ( w_string ).

Do w_strlen  type.

if w_string+count(1)  CO sy-abcde.
  count = count + 1.
else.
   Exit.
endif.
ENDDO.

w_string = w_string+count(w_strlen - count ).

write s_string.

_OUTPUT :--12345_

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:14:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764382#M1305431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764383#M1305432</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 this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : P_STR(20) TYPE C.
DATA: LEN TYPE I,
      N   TYPE I.
DATA: OUT(20).

LEN = STRLEN( P_STR ).

DO LEN TIMES.

  IF P_STR+N(1) CA '1234567890'.
    CONCATENATE P_STR+N(1) OUT INTO OUT.

  ENDIF.
  N = N + 1.
ENDDO.

WRITE OUT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;R K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764383#M1305432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764384#M1305433</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;Check :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:
  len TYPE i,
  i TYPE i VALUE 0,
  dtype LIKE dd01v-datatype.

PARAMETERS valuein(70).

len = STRLEN( valuein ).
WHILE i &amp;lt;= len.
  CALL FUNCTION 'NUMERIC_CHECK'
    EXPORTING
      string_in        = valuein+i(1)
   IMPORTING
     htype            = dtype
  .
  IF dtype = 'NUMC'.
    WRITE:   valuein+i(1) NO-GAP.
  ENDIF.
  i = i + 1.
ENDWHILE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Input   : 0ABC12DE3&lt;/P&gt;&lt;P&gt;output : 0123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Remi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:15:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764384#M1305433</guid>
      <dc:creator>RemiKaimal</dc:creator>
      <dc:date>2009-06-15T12:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764385#M1305434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice example how one line of Regex (see Manish's reply) makes a lot of complicated code obsolete.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:33:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764385#M1305434</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-06-15T12:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764386#M1305435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    If the numeric content is present at once , i.e after text or before text&lt;/P&gt;&lt;P&gt;Just declare a variable of Numeric type assign the alphanumeric variable to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : lv_rfqnumber(10) TYPE n,
            lv_message(132) TYPE c.

lv_message = 'ABC12345'.
lv_rfqnumber = lv_message.

WRITE :/ lv_message.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_message will have value 12345.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:38:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764386#M1305435</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2009-06-15T12:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764387#M1305436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not quite, it still has 'ABC12345', while lv_rfqnumber now has '0000012345'.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:42:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764387#M1305436</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-06-15T12:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764388#M1305437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And one more simplest one &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURRENCES OF REGEX '\D' IN str WITH ''.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually Manish's code will replace all other characters with space, so we need to actually erase the space also so give a empty double apostrophe . ( Note that '' doesnot contains any spaces in between )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764388#M1305437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764389#M1305438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very nice...I will have to dig more into this topic &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:46:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764389#M1305438</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-06-15T12:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764390#M1305439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Very nice...I will have to dig more into this topic &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While we are digging deep into this topic the OP has gone fishing it seems, no follow up messages &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:49:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764390#M1305439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764391#M1305440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;He'll probably confess that he's working with 4.6C and there goes the nice solution...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:56:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764391#M1305440</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-06-15T12:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764392#M1305441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey Karthik, for some reason, replace regex with space is not really putting spaces in the string. (it is replacing with null i think)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPLACE ALL OCCURRENCES OF REGEX '[a-zA-Z]' IN str WITH space.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What can be the reason behind this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 13:02:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764392#M1305441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T13:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764393#M1305442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I dont know why. But your statement only removes alphabets while my statement removes all other characters including symbols except digits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 02:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764393#M1305442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-16T02:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric portion of string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764394#M1305443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karthik you rock &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still this thread is not closed !!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 08:53:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-portion-of-string/m-p/5764394#M1305443</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-06-16T08:53:10Z</dc:date>
    </item>
  </channel>
</rss>

