<?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: Working with String-REPLACE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-with-string-replace/m-p/4638806#M1092028</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;looks like you want to read the url parameter , see the class CL_HTTP_ENTITY , method GET_FORM_FIELD logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Oct 2008 19:32:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-27T19:32:55Z</dc:date>
    <item>
      <title>Working with String-REPLACE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-with-string-replace/m-p/4638804#M1092026</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 need to replace string contents in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM TEXT_SPLIT &amp;amp; SWA_STRING_SPLIT are not meeting my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;BSP_PROTCL&amp;gt;://&amp;lt;BSP_SERVER&amp;gt;/SAP/BW/BEX?BOOKMARK_ID=42QDVUFIFCOQ9O50UDSBMJUDO&amp;amp;VA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to replace code in between '=" and '&amp;amp;' each time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 19:23:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-with-string-replace/m-p/4638804#M1092026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-27T19:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: Working with String-REPLACE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-with-string-replace/m-p/4638805#M1092027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could of course use regex, but I am not really a fan of it. So here is a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: lv_source type string.
data: lv_first_part type string.
data: lv_second_part type string.
data: lv_third_part type string.
data: lv_target type string.
data: Lv_some_other_value type string.

lv_source = `&amp;lt;BSP_PROTCL&amp;gt;://&amp;lt;BSP_SERVER&amp;gt;/SAP/BW/BEX?BOOKMARK_ID=42QDVUFIFCOQ9O50UDSBMJUDO&amp;amp;VA`.

split lv_source at `=` into lv_first_part lv_second_part.
split lv_second_part at `&amp;amp;` into lv_second_part lv_third_part.

Lv_some_other_value = `BlahBlahBlah`.
CONCATENATE lv_first_part `=` lv_some_other_value `&amp;amp;` lv_third_part into lv_target.

write:/ lv_source.
write:/ lv_target.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 19:29:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-with-string-replace/m-p/4638805#M1092027</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-10-27T19:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Working with String-REPLACE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/working-with-string-replace/m-p/4638806#M1092028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;looks like you want to read the url parameter , see the class CL_HTTP_ENTITY , method GET_FORM_FIELD logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 19:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/working-with-string-replace/m-p/4638806#M1092028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-27T19:32:55Z</dc:date>
    </item>
  </channel>
</rss>

