Tokenize a string: Difference between revisions

Content added Content deleted
(added Crystal implementation)
Line 1,292: Line 1,292:
You.
You.
Today.</pre>
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}}==
=={{header|D}}==