Tokenize a string: Difference between revisions

Content deleted Content added
Shuisman (talk | contribs)
added Crystal implementation
Line 1,292:
You.
Today.</pre>
 
=={{header|Crystal}}==
<lang crystal>puts "Hello,How,Are,You,Today".split(',').join('.')</lang>
{{out}}
<pre>Hello.How.Are.You.Today</pre>
 
=={{header|D}}==