Tokenize a string: Difference between revisions

add bqn
m (syntax highlighting fixup automation)
(add bqn)
Line 1,192:
>tokenize.cmd "Hello,How,Are,You,Today"
Hello.How.Are.You.Today
 
=={{header|BQN}}==
Uses a splitting idiom from bqncrate.
<syntaxhighlight lang="bqn"> Split←((⊢-˜+`׬)∘=⊔⊢)
(⊢-˜+`׬)∘=⊔⊢
∾⟜'.'⊸∾´','Split"Hello,How,Are,You,Today"
"Hello.How.Are.You.Today"</syntaxhighlight>
 
=={{header|Bracmat}}==
236

edits