|
James wrote: >I need to convert the following C code to RPG. I suppose I can leave the >getword() function as C, but I really need to be able to do the main() >function as RPG. Some help making this RPG would be great :) > > (43 lines of C code omitted) Other people have already provided good answers. Using C runtime function "strtok()" is IMO probably the best alternative. Also, using RPG's %SCAN and %SUBST BIF's is not an unreasonable approach either. But since this is Friday, I thought I'd be a trouble-maker and provide a solution in Python instead: :-) ;-) :-) -------------------------------------------- # Print words of string: str = 'This is a test. And so is this.' for word in str.split(): print "string:\t", word -------------------------------------------- Cheers! Hans Hans Boldt, ILE RPG Development, IBM Toronto Lab, boldt@ca.ibm.com
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 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.