String replace method in RPG IV - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T11:43:06Zhttp://stackoverflow.com/feeds/question/805007http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/805007/string-replace-method-in-rpg-iv0String replace method in RPG IVlalala20072009-04-30T01:22:25Z2009-07-30T20:06:15Z
<p>In RPG IV how can I take a string and eliminate all instances of a character in specific or replace them with another one ?. This is kind of like string replace built in methods in other programmnig languages. Ex: take 021-123450-23-4 and covert to 021123450234</p>
http://stackoverflow.com/questions/805007/string-replace-method-in-rpg-iv/807841#8078411Answer by Mike Wills for String replace method in RPG IVMike Wills2009-04-30T16:32:28Z2009-04-30T16:32:28Z<p>Take a look at the following articles:</p>
<ul>
<li><a href="http://www.itjungle.com/fhg/fhg030409-story01.html" rel="nofollow">http://www.itjungle.com/fhg/fhg030409-story01.html</a></li>
<li><a href="http://www.itjungle.com/fhg/fhg022509-story01.html" rel="nofollow">http://www.itjungle.com/fhg/fhg022509-story01.html</a></li>
</ul>
<p>These should help.</p>
http://stackoverflow.com/questions/805007/string-replace-method-in-rpg-iv/854489#8544892Answer by Paul Morgan for String replace method in RPG IVPaul Morgan2009-05-12T19:41:12Z2009-05-12T19:41:12Z<p>To remove all hyphens:</p>
<p>new_string = %XLATE( string, '-', '' );</p>
<p>To replace all hyphens with ampersand:</p>
<p>new_string = %XLATE( string, '-', '&' );</p>
<p>If you want to replace more than a single character then you're going to have to roll your own function/code as described in the articles Mike Wills pointed to.</p>