Tokenize a string: Difference between revisions

Adds slope example
(add bqn)
(Adds slope example)
Line 3,421:
=={{header|Slate}}==
<syntaxhighlight lang="slate">('Hello,How,Are,You,Today' splitWith: $,) join &separator: '.'.</syntaxhighlight>
 
=={{header|Slope}}==
<syntaxhighlight lang="slope">(display
(list->string
(string->list
"Hello,How,Are,You,Today"
",")
"."))</syntaxhighlight>
{{out}}
<pre>Hello.How.Are.You.Today</pre>
 
=={{header|Smalltalk}}==
37

edits