Tokenize a string: Difference between revisions

Content deleted Content added
JoeStrout (talk | contribs)
Drkameleon (talk | contribs)
No edit summary
Line 412: Line 412:
</lang>
</lang>

=={{header|Arturo}}==

{{trans|D}}

<lang arturo>str "Hello,How,Are,You,Today"

print $(join $(split str ",") ".")</lang>

{{out}}

<pre>Hello.How.Are.You.Today</pre>


=={{header|Astro}}==
=={{header|Astro}}==