|
Michael - Nothing is wrong if you want to change only the first instance of the ',' that you find in UMAD3 but if you want them all you'll have to loop to find each occurrence. Try something like this: eval pos=%scan(' ':%trimr(UMAD3)) dow pos = *zero eval sourceString = %replace(',': sourceString:pos:1) eval pos=%scan(' ':%trimr(UMAD3)) enddo No need for the #UMAD3 variable but if you want to preserve the existing content you should do that first. You could make this a procedure or a module or just a subroutine and 'pass in' the Character that you want to replace, what you want to replace it with and the string. eval pos=%scan(findChar:%trimr(sourceString)) dow pos > *zero eval sourceString = %replace(replaceChar: sourceString:pos:1) eval pos=%scan(findChar:%trimr(sourceString)) enddo Have a great day! Bill ----- Original Message ----- From: "Smith, Mike" <Mike_Smith@RGCResources.com> To: <RPG400-L@midrange.com> Sent: Thursday, July 05, 2001 8:01 AM Subject: %REPLACE- WHATS WRONG > Does anyone see what is wrong with this? i am getting a Reciever to small > error on this statement. > > C EVAL #UMAD3 = %REPLACE(' ': > C UMAD3: > C %SCAN(',':UMAD3)) > > > #UMAD3 is defined as the same size as UMAD3. > > basically what i want to do is scan UMAD3 and replace any ',' with ' ' > > Thanks > > > Michael Smith > > +--- > | This is the RPG/400 Mailing List! > | To submit a new message, send your mail to RPG400-L@midrange.com. > | To subscribe to this list send email to RPG400-L-SUB@midrange.com. > | To unsubscribe from this list send email to RPG400-L-UNSUB@midrange.com. > | Questions should be directed to the list owner/operator: david@midrange.com > +--- +--- | This is the RPG/400 Mailing List! | To submit a new message, send your mail to RPG400-L@midrange.com. | To subscribe to this list send email to RPG400-L-SUB@midrange.com. | To unsubscribe from this list send email to RPG400-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.