RosettaCodeData/Task/Tokenize-a-string/Astro/tokenize-a-string.astro

4 lines
97 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
let text = 'Hello,How,Are,You,Today'
2019-09-12 10:33:56 -07:00
let tokens = text.split(||,||)
2018-06-22 20:57:24 +00:00
print tokens.join(with: '.')