<?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 How to extract string from ulphanum string.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139473#M746080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can i extract the Alpha chars from the following string:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;0900000101135ABC      &lt;/P&gt;&lt;P&gt;0900000101135DEFG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a std fn mod for extracting ABC and DEFG from the above strings..???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output&lt;/P&gt;&lt;P&gt;ABC&lt;/P&gt;&lt;P&gt;DEFG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Dec 2007 07:08:22 GMT</pubDate>
    <dc:creator>naveenvishal</dc:creator>
    <dc:date>2007-12-14T07:08:22Z</dc:date>
    <item>
      <title>How to extract string from ulphanum string....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139473#M746080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can i extract the Alpha chars from the following string:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;0900000101135ABC      &lt;/P&gt;&lt;P&gt;0900000101135DEFG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a std fn mod for extracting ABC and DEFG from the above strings..???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output&lt;/P&gt;&lt;P&gt;ABC&lt;/P&gt;&lt;P&gt;DEFG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 07:08:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139473#M746080</guid>
      <dc:creator>naveenvishal</dc:creator>
      <dc:date>2007-12-14T07:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract string from ulphanum string....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139474#M746081</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 use : STRING_SPLIT_AT_POSITION function module.&lt;/P&gt;&lt;P&gt;give value of string as the value provided. e.g 0900000101135ABC&lt;/P&gt;&lt;P&gt;give the position as the data size. I assume that the 90.... is a billing document number or a material document number.&lt;/P&gt;&lt;P&gt;So you can give the size as data size of document number,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Narayani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 07:49:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139474#M746081</guid>
      <dc:creator>Nkrish</dc:creator>
      <dc:date>2007-12-14T07:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract string from ulphanum string....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139475#M746082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you do not find a FM then try this pseudo code...&lt;/P&gt;&lt;P&gt;cnt  = 0.&lt;/P&gt;&lt;P&gt;DO 10 TIMES.&lt;/P&gt;&lt;P&gt;replace all occurences of cnt in your string with space. "please chk the right syntax for replace&lt;/P&gt;&lt;P&gt;cnt = cnt + 1.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;condense to remove spaces.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 07:56:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139475#M746082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T07:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract string from ulphanum string....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139476#M746083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;  FIND ALL OCCURRENCES OF REGEX '(D*)'
    IN '0900000101135ABC' SUBMATCHES s1.

  write:/ s1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 08:06:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-string-from-ulphanum-string/m-p/3139476#M746083</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2007-12-14T08:06:49Z</dc:date>
    </item>
  </channel>
</rss>

