<?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: Replace Character with Space in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979176#M1492397</link>
    <description>&lt;P&gt;is this work in amdp eclipse?&lt;/P&gt;</description>
    <pubDate>Mon, 27 Apr 2020 05:51:24 GMT</pubDate>
    <dc:creator>former_member670996</dc:creator>
    <dc:date>2020-04-27T05:51:24Z</dc:date>
    <item>
      <title>Replace Character with Space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979172#M1492393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We need to replace dashes in a string with a space.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA result TYPE string.
result = 'Hello--World!'.
REPLACE ALL OCCURRENCES OF '-' IN result WITH ' '.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;However ABAP compresses all space and the result is&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;'HelloWorld!'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 08:20:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979172#M1492393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-24T08:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Character with Space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979173#M1492394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA result TYPE string.
DATA blank TYPE c LENGTH 20.
result = 'Hello--World!'.
OVERLAY result WITH blank ONLY '-'.
WRITE:/ result.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;REPLACE statement does not respect blanks, OVERLAY does.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 08:31:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979173#M1492394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-24T08:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Character with Space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979174#M1492395</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;P&gt;If you unnecessary to use REPLACE ALL OCCURRENCES, that try this way:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA result TYPE string.
result = 'Hello--World!'.
translate result using '- '.
condense result.
write result.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 08:31:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979174#M1492395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-24T08:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Character with Space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979175#M1492396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you searched SDN??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ways...try the below one.. its a backquote&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : s1 type string value 'Hello--World!'.
replace all OCCURRENCEs OF `-` IN s1 WITH ` `. "this is the quote near by 1 in keyboard...
WRITE s1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 08:33:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979175#M1492396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-24T08:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Character with Space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979176#M1492397</link>
      <description>&lt;P&gt;is this work in amdp eclipse?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 05:51:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-character-with-space/m-p/6979176#M1492397</guid>
      <dc:creator>former_member670996</dc:creator>
      <dc:date>2020-04-27T05:51:24Z</dc:date>
    </item>
  </channel>
</rss>

