Tokenize a string: Difference between revisions

(Add zsh)
Line 912:
 
<lang python>print '.'.join('Hello,How,Are,You,Today'.split(','))</lang>
 
<lang python>i = split("Hello,How,Are,You,Today")
for a in i:
print i+"."
</lang>
 
=={{header|R}}==
Anonymous user