RosettaCodeData/Task/Tokenize-a-string/Nial/tokenize-a-string-4.nial
2018-06-22 20:57:24 +00:00

8 lines
224 B
Text

s:='Hello,How,Are,You,Today'
Hello,How,Are,You,Today
t:= s eachall = `, cut s
+-----+---+---+---+-----+
|Hello|How|Are|You|Today|
+-----+---+---+---+-----+
u:=front content (cart t `.)
Hello.How.Are.You.Today