String replace method in RPG IV - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T11:43:06Z http://stackoverflow.com/feeds/question/805007 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/805007/string-replace-method-in-rpg-iv 0 String replace method in RPG IV lalala2007 2009-04-30T01:22:25Z 2009-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#807841 1 Answer by Mike Wills for String replace method in RPG IV Mike Wills 2009-04-30T16:32:28Z 2009-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#854489 2 Answer by Paul Morgan for String replace method in RPG IV Paul Morgan 2009-05-12T19:41:12Z 2009-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, '-', '&amp;' );</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>