Tokenize a string: Difference between revisions

Content added Content deleted
(add FreeBASIC)
(Added output.)
Line 2,085: Line 2,085:
let tokens = text.split(',')
let tokens = text.split(',')
echo tokens.join(".")</lang>
echo tokens.join(".")</lang>

{{out}}
<pre>Hello.How.Are.You.Today</pre>


=={{header|Objeck}}==
=={{header|Objeck}}==