Tokenize a string: Difference between revisions

no edit summary
(Add lang example)
No edit summary
Line 1,695:
IO.puts Enum.join(tokens, ".")
</syntaxhighlight>
 
=={{header|EMal}}==
<syntaxhighlight lang="emal">
text value = "Hello,How,Are,You,Today"
List tokens = value.split(",")
writeLine(tokens.join("."))
</syntaxhighlight>
{{out}}
<pre>
Hello.How.Are.You.Today
</pre>
 
=={{header|Erlang}}==
214

edits