<?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 Find symbol in string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544040#M1562712</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;assume i have field like 99.999.99 or fields like 99,99 or fileds&lt;/P&gt;&lt;P&gt;like 99.99,99 or 99,99.99 ,how can i know that the fields &lt;/P&gt;&lt;P&gt;are with symbols (, or .)  and separate between them and filed like 9999 that &lt;/P&gt;&lt;P&gt;dont have any symbol on it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try with FIND REGEX `(.)(,)` IN lv_val. but &lt;/P&gt;&lt;P&gt;it dont fetch fiels like 99.999.99 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Dec 2010 14:23:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-28T14:23:31Z</dc:date>
    <item>
      <title>Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544040#M1562712</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;assume i have field like 99.999.99 or fields like 99,99 or fileds&lt;/P&gt;&lt;P&gt;like 99.99,99 or 99,99.99 ,how can i know that the fields &lt;/P&gt;&lt;P&gt;are with symbols (, or .)  and separate between them and filed like 9999 that &lt;/P&gt;&lt;P&gt;dont have any symbol on it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try with FIND REGEX `(.)(,)` IN lv_val. but &lt;/P&gt;&lt;P&gt;it dont fetch fiels like 99.999.99 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 14:23:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544040#M1562712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-28T14:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544041#M1562713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try SPLIT and then concatenate in new string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 14:28:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544041#M1562713</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2010-12-28T14:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544042#M1562714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use &lt;STRONG&gt;Replace all occurances&lt;/STRONG&gt; with space and then &lt;STRONG&gt;condense&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anmol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 14:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544042#M1562714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-28T14:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544043#M1562715</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;If its always numeric then you can go like this. Seperate the string where non numeric characters are found. In your case comma and dot  are always non numeric. Also could you please explain it bit more clear. Is your requirement to find if there is a separator or what is the separator ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 14:32:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544043#M1562715</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-12-28T14:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544044#M1562716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Keshav ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The fields can come as  dec or quan &lt;/P&gt;&lt;P&gt;and i need to know if the field &lt;STRONG&gt;contain the follwing template&lt;/STRONG&gt; .&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;(.-.) 99.99.99
(,-,) 99,99,99
(,-.) 99,99.99
(.-,) 99.99,99
(,-,-.) 99,99,99.00
(.-.-,) 99.99.99,00
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the best way to do that  ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 14:45:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544044#M1562716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-28T14:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544045#M1562717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes it should work with a CONDENSE NO-GAPS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 14:47:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544045#M1562717</guid>
      <dc:creator>franois_henrotte</dc:creator>
      <dc:date>2010-12-28T14:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544046#M1562718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK then put the value into a string and check if &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_string CP '99&lt;EM&gt;99&lt;/EM&gt;99*'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 14:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544046#M1562718</guid>
      <dc:creator>franois_henrotte</dc:creator>
      <dc:date>2010-12-28T14:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544047#M1562719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need not go for any regex pattern for this. This is determined by the decimal notation in user profile.&lt;/P&gt;&lt;P&gt;You can get it from table USR01, field DCPFM passing the username to field BNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possible values are X,Y , SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its blank then thousand separator is &lt;STRONG&gt;dot&lt;/STRONG&gt; and decimal separator is &lt;STRONG&gt;comma&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if its X  then thousand separator is &lt;STRONG&gt;comma&lt;/STRONG&gt; and decimal separator is &lt;STRONG&gt;dot&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 14:49:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544047#M1562719</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-12-28T14:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544048#M1562720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Keshav.T &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes i know how to do it like that but i need to do it with coding &lt;/P&gt;&lt;P&gt;assume the field value is type string and i want to find if it contain one of the pattern in my previos post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 15:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544048#M1562720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-28T15:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544049#M1562721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by coding ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it like the string might comtain the pattern opposite to the values maintained in the user profile ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 15:02:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544049#M1562721</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-12-28T15:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544050#M1562722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI François Henrotte 	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The string can be diffrent now it 999.999 and it can be also any nubmer like 11,11 etc&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;i need to find if tstring lv_val contain the following patterns&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;(.-.) 99.99.99
(,-,) 99,99,99
(,-.) 99,99.99
(.-,) 99.99,99
(,-,-.) 99,99,99.00
(.-.-,) 99.99.99,00&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;Alex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 15:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544050#M1562722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-28T15:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544051#M1562723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure whenthere this is what you meant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:str type string.
data:temp type string.


str = '99,99,99.00'.
replace all occurrences of regex '[:\d:]' in str with ` `.
replace all occurrences of ` ` in str with '-'.
condense str.
write str.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or spli it into internal table then concatenate the symbols with &lt;STRONG&gt;-&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 15:19:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544051#M1562723</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-12-28T15:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544052#M1562724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try inputting single validations for the REGEX. Instead of checking for "," &amp;amp; '.' at the same time, take a multi step approach. Use IF conditions; like if the the field does not have commas then check if it has dots. Also, if you can use constants in your code, you can make good enough use of the syntax. Declare constants for the values "," &amp;amp; "." . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONSTANTS: C_COMMA TYPE C VALUE ',' ,
           C_DOT   TYPE C VALUE '.' .

DATA: result_tab TYPE match_result_tab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the constants in the code as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIND ALL OCCURRENCES OF REGEX C_COMMA IN "FIELDNAME" RESULTS result_tab.

FIND ALL OCCURRENCES OF REGEX C_COMMA IN "FIELDNAME" RESULTS result_tab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try as aforesaid and post back if you need help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Chaitanya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: cn chaitanya on Dec 28, 2010 8:58 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 15:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544052#M1562724</guid>
      <dc:creator>former_member229034</dc:creator>
      <dc:date>2010-12-28T15:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544053#M1562725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you're looking for patterns, you could try something like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameters: lv_val type string.

if lv_val CP '*.*.*'.
    if lv_val CP '*.*.*,*'.
      write /: `Contains pattern '*.*.*,*'`.
    else.
      write /: `Contains pattern '*.*.*'`.
    endif.

    ELSEIF lv_val CP '*.*,*'.
      write /: `Contains pattern '*.*,*'`.
endif.

if lv_val CP '*,*,*'.
    if lv_val CP '*,*,*.*'.
      write /: `Contains pattern '*,*,*.*'`.
    else.
      write /: `Contains pattern '*,*,*'`.
    endif.

    ELSEIF lv_val CP '*,*.*'.
      write /: `Contains pattern '*,*.*'`.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Dec 2010 05:47:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544053#M1562725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-29T05:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544054#M1562726</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 do like this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w1(10) value  '99,999.99', &lt;/P&gt;&lt;P&gt;         w2(10) value '9999',&lt;/P&gt;&lt;P&gt;          s(2) value '.,'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if w1 ca s .&lt;/P&gt;&lt;P&gt;  write 'found'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;  write: 'not found'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Dec 2010 06:21:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544054#M1562726</guid>
      <dc:creator>anjan_paul</dc:creator>
      <dc:date>2010-12-29T06:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544055#M1562727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this what you are looking for ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  z_test LINE-SIZE 255.

DATA: num(30) VALUE '999.999.999,999'.

DATA: v_strlen TYPE i,
      v_index TYPE i VALUE 0,
      v_temp TYPE c VALUE '',
      output TYPE string VALUE ''.

v_strlen = STRLEN( num ).

DO v_strlen TIMES.
  CASE num+v_index(1).
    WHEN '1'. v_temp = 'X'.
    WHEN '2'. v_temp = 'X'.
    WHEN '3'. v_temp = 'X'.
    WHEN '4'. v_temp = 'X'.
    WHEN '5'. v_temp = 'X'.
    WHEN '6'. v_temp = 'X'.
    WHEN '7'. v_temp = 'X'.
    WHEN '8'. v_temp = 'X'.
    WHEN '9'. v_temp = 'X'.
    WHEN '0'. v_temp = 'X'.
    WHEN OTHERS.
      IF v_temp = 'X'.
        CONCATENATE output '-' INTO output.
        CLEAR v_temp.
      ENDIF.
      CONCATENATE output num+v_index(1) INTO output.
  ENDCASE.
  v_index = v_index + 1.
ENDDO.
WRITE : / output.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Dec 2010 06:53:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544055#M1562727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-29T06:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Find symbol in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544056#M1562728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the SEARCH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants : c_minus(1) type c value '-'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:- SEARCH text  FOR c_minus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Dec 2010 08:07:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-symbol-in-string/m-p/7544056#M1562728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-29T08:07:31Z</dc:date>
    </item>
  </channel>
</rss>

