<?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: Need to remove bracket in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695325#M1451750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; you can achieve this in 2 means.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. check the field(variable) from which you are displaying this to the output.&lt;/P&gt;&lt;P&gt;.Str =" Anshul((Rawat))"&lt;/P&gt;&lt;P&gt;then check out for the first occurrence of '(' and also for the last occurrence of ')'.&lt;/P&gt;&lt;P&gt;then delete those two things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after this your output looks like Anshul(Rawat).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Check out for the string length and use offset positions to remove the special characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Sasi Kanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Feb 2010 13:21:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-23T13:21:38Z</dc:date>
    <item>
      <title>Need to remove bracket</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695320#M1451745</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;My String is Str =" Anshul((Rawat))"&lt;/P&gt;&lt;P&gt;I need to remove each of the one bracket..o/p should be like "Anshul(Rawat).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2010 12:50:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695320#M1451745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-23T12:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need to remove bracket</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695321#M1451746</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;PRE&gt;&lt;CODE&gt;
data: str(20).
Str = ' Anshul((Rawat))'.
REPLACE '((' WITH '(' INTO str.
REPLACE '))' WITH ')' INTO str.
write str.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2010 12:58:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695321#M1451746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-23T12:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Need to remove bracket</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695322#M1451747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dzed ..&lt;/P&gt;&lt;P&gt;Thanks a lot...Its done...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anshul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2010 13:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695322#M1451747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-23T13:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need to remove bracket</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695323#M1451748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dzed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use double brackets more than one time, it is not working properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like "Anshuk((Rawat))Hello))".&lt;/P&gt;&lt;P&gt;It replaces only first double bracket once and gives the output as" Anshul(Rawat)Hello))"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2010 13:15:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695323#M1451748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-23T13:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Need to remove bracket</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695324#M1451749</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;Use REPLACE ALL OCCURENCES OF '((' WITH '(' INTO str.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURENCES OF '))' WITH ')' INTO str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2010 13:18:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695324#M1451749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-23T13:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need to remove bracket</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695325#M1451750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; you can achieve this in 2 means.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. check the field(variable) from which you are displaying this to the output.&lt;/P&gt;&lt;P&gt;.Str =" Anshul((Rawat))"&lt;/P&gt;&lt;P&gt;then check out for the first occurrence of '(' and also for the last occurrence of ')'.&lt;/P&gt;&lt;P&gt;then delete those two things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after this your output looks like Anshul(Rawat).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Check out for the string length and use offset positions to remove the special characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Sasi Kanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2010 13:21:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-remove-bracket/m-p/6695325#M1451750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-23T13:21:38Z</dc:date>
    </item>
  </channel>
</rss>

