Tokenize a string: Difference between revisions

m
m (→‎{{header|Picat}}: code tags)
Line 2,812:
 
=={{header|Picat}}==
Using the built-in functions <code>split/2</code> and <code>join/2</code>.
<lang Picat>import util.
 
% using built-in split/2 and join/2
go =>
S = "Hello,How,Are,You,Today",
Line 2,828:
Hello.How.Are.You.Today
Hello.How.Are.You.Today</pre>
 
 
=={{header|PicoLisp}}==
495

edits