Tokenize a string: Difference between revisions

m
Line 1,656:
A := []
"Hello,How,Are,You,Today" ? {
while put(A, 1(tab(upto(',')|0),=","))
put(A,tab(0))
}
Line 1,678:
write()
end</lang>
 
One wonders what the expected output should be with the input string ",,,,".
 
=={{header|Io}}==