Tokenize a string: Difference between revisions

Add Jsish
(Add Jsish)
Line 1,181:
"Hello,How,Are,You,Today"
Hello.How.Are.You.Today</lang>
 
=={{header|Jsish}}==
Being in the ECMAScript family, Jsi is blessed with many easy to use character, string and array manipulation routines.
 
<lang javascript>puts('Hello,How,Are,You,Today'.split(',').join('.'))</lang>
{{out}}
<pre>Hello.How.Are.You.Today</pre>
 
=={{header|Julia}}==
Anonymous user