Tokenize a string: Difference between revisions

m
imported>MattDESTROYER
Line 2,102:
 
=={{header|JavaScript}}==
<syntaxhighlight lang="javascript">console.log(
{{works with|Firefox|2.0}}
"Hello,How,Are,You,Today"
 
.split(",")
<syntaxhighlight lang="javascript">alert( "Hello,How,Are,You,Today".split(",").join(".") );</syntaxhighlight>
.join(".")
);</syntaxhighlight>
 
=={{header|jq}}==