Tokenize a string: Difference between revisions

Content added Content deleted
(adding gap)
Line 439:
END PROGRAM Example</lang>
=={{header|GAP}}==
<lang gap>SplitString("Hello,How,Are,You,Today", ",");
# [ "Hello", "How", "Are", "You", "Today" ]
 
JoinStringsWithSeparator(last, ".");
# "Hello.How.Are.You.Today"</lang>
 
=={{header|Go}}==
<lang go>package main