RosettaCodeData/Task/Tokenize-a-string/OoRexx/tokenize-a-string.rexx

6 lines
123 B
Rexx
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
text='Hello,How,Are,You,Today'
do while text \= ''
parse var text word1 ',' text
call charout 'STDOUT:',word1'.'
end