Tokenize a string: Difference between revisions

→‎BQN: cleanup
(Easylang)
(→‎BQN: cleanup)
Line 1,199:
=={{header|BQN}}==
Uses a splitting idiom from bqncrate.
<syntaxhighlight lang="bqn">Split Split←((⊢-˜+`׬)⊸-∘=⊔⊢) ⊔ ⊢
 
(⊢-˜+`׬)∘=⊔⊢
∾⟜'.'⊸∾´ ',' Split "Hello,How,Are,You,Today"</syntaxhighlight>
{{out}}
<pre>"Hello.How.Are.You.Today"</syntaxhighlightpre>
 
=={{header|Bracmat}}==
559

edits