Tokenize a string: Difference between revisions

Content deleted Content added
Added Kotlin
Line 909:
</pre>
 
=={{header|Kotlin}}==
{{works with|Kotlin|M12}}
<lang Kotlin>val input = "Hello,How,Are,You,Today"
println(input.splitBy(",").join("."))</lang>
{{out}}
<pre>Hello.How.Are.You.Today</pre>
 
=={{header|LabVIEW}}==