Jump to content

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}}==
224

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.