vote up 0 vote down star

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

flag

25% accept rate

2 Answers

vote up 2 vote down

To remove all hyphens:

new_string = %XLATE( string, '-', '' );

To replace all hyphens with ampersand:

new_string = %XLATE( string, '-', '&' );

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.

link|flag
vote up 1 vote down

Take a look at the following articles:

These should help.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.