Tokenize a string: Difference between revisions

m
→‎version 1: legitimized the REXX program's 1st statement. -- ~~~~
No edit summary
m (→‎version 1: legitimized the REXX program's 1st statement. -- ~~~~)
Line 1,366:
=={{header|REXX}}==
===version 1===
<lang rexx>sss='Hello,How,Are,You,Today'/*REXX program to seperate a string of comma-delimited /*words seperated by commas. */
sss='Hello,How,Are,You,Today' /*words seperated by commas. */
say 'input string='sss /*echo the string to console. */
say
Line 1,382 ⟶ 1,383:
 
say 'End-of-list.' /*Display a trailer for the list*/</lang>
'''output'''
Output:
input string=Hello,How,Are,You,Today