<?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: regarding The regular expression in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466745#M1554593</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;I agree with thomas , u dont have to specify REGEX ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ex :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : g_str2(100)  type  c  value '12:30:40'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ':' IN G_STR2 WITH SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result : g_str2 = 12 30 40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All occurances of g_str2 will be replaced by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers !&lt;/P&gt;&lt;P&gt;Soumya Ranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Dec 2010 11:44:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-13T11:44:11Z</dc:date>
    <item>
      <title>regarding The regular expression</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466741#M1554589</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;&lt;/P&gt;&lt;P&gt;   there is an error in the following statement , the error messge while activating the system  says &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The regular expression '|' is invalid character at position 1., could u pls tell me how exactly correct the following statements.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; REPLACE ALL OCCURRENCES of REGEX '|' in s_name1 with ''.&lt;/P&gt;&lt;P&gt; REPLACE ALL OCCURRENCES of REGEX '?' in s_name1 with ''.&lt;/P&gt;&lt;P&gt; REPLACE ALL OCCURRENCES of REGEX '*' in s_name1 with ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank u vrey much for any reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 06:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466741#M1554589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-13T06:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: regarding The regular expression</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466742#M1554590</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;    Please look for F1 on REGEX. The character which needs to be replaced should be at position 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA : text TYPE string VALUE 'aa-'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    REPLACE ALL OCCURRENCES OF REGEX 'a*' IN text WITH 'y'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 07:12:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466742#M1554590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-13T07:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: regarding The regular expression</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466743#M1554591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;|, * and ? are all 'special' characters in regular expressions. I believe you want to replace exactly those literals in your text and not to use them as meta-characters. If this is so, then just try to escape them. Probably prefixing your chars with backslash will help: \| \* \?. If not, read the docs for escaping.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 07:53:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466743#M1554591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-13T07:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: regarding The regular expression</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466744#M1554592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You probably don't need the REGEX option at all for that simple replace that you are trying to do. Read the F1 help for REPLACE carefully.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 11:35:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466744#M1554592</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2010-12-13T11:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: regarding The regular expression</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466745#M1554593</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;I agree with thomas , u dont have to specify REGEX ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ex :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : g_str2(100)  type  c  value '12:30:40'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ':' IN G_STR2 WITH SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result : g_str2 = 12 30 40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All occurances of g_str2 will be replaced by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers !&lt;/P&gt;&lt;P&gt;Soumya Ranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 11:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-regular-expression/m-p/7466745#M1554593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-13T11:44:11Z</dc:date>
    </item>
  </channel>
</rss>

