<?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: String Manipulation - Finding and Getting Text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046411#M721140</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Use the Keyword Search. It will give you the position of the required word in SY-FDPOS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:wf(100) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wf = 'eight hundred fifty rupee five paisa'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;search wf for 'rupee'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : wf+(sy-fdpos).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Move The Number to a character field. Use SPLIT at '.' into two variables. The first character field will give you the required number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Abhishek Jolly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Nov 2007 11:14:20 GMT</pubDate>
    <dc:creator>former_member195698</dc:creator>
    <dc:date>2007-11-08T11:14:20Z</dc:date>
    <item>
      <title>String Manipulation - Finding and Getting Text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046409#M721138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I  have two tasks to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. "NINE HUNDRED EIGHTY-NINE Rupees NINETY Paise" --&amp;gt; what I want to do is find "Rupees" from the text and delete starting from "Rupees" until the end of the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. "989.90" ---&amp;gt; I want to find the position of "." and get everything beyond that point so i can get just "90"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks! Credits will be given&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 11:04:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046409#M721138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T11:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: String Manipulation - Finding and Getting Text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046410#M721139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jill,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: rs(100) type c,&lt;/P&gt;&lt;P&gt;      rs1(100),&lt;/P&gt;&lt;P&gt;      ps1(100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rs = 'NINE HUNDRED EIGHTY-NINE Rupees NINETY Paise'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT rs AT 'Rupees' into rs1 ps1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: rs1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Archana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 11:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046410#M721139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T11:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: String Manipulation - Finding and Getting Text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046411#M721140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Use the Keyword Search. It will give you the position of the required word in SY-FDPOS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:wf(100) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wf = 'eight hundred fifty rupee five paisa'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;search wf for 'rupee'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : wf+(sy-fdpos).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Move The Number to a character field. Use SPLIT at '.' into two variables. The first character field will give you the required number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Abhishek Jolly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 11:14:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046411#M721140</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-11-08T11:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: String Manipulation - Finding and Getting Text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046412#M721141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks this worked!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 11:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-manipulation-finding-and-getting-text/m-p/3046412#M721141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T11:21:10Z</dc:date>
    </item>
  </channel>
</rss>

