Tokenize a string: Difference between revisions

(→‎dt: add)
Line 1,660:
Today
</syntaxhighlight>
 
=={{header|dt}}==
<syntaxhighlight lang="dt">"Hello,How,Are,You,Today" "," split "." join pl</syntaxhighlight>
 
=={{header|Dyalect}}==
 
<syntaxhighlight lang="dyalect">var str = "Hello,How,Are,You,Today"
var strings = str.Split(',')
print(values: strings, separator: ".")</syntaxhighlight>
 
{{out}}
 
<pre>Hello.How.Are.You.Today</pre>
 
559

edits