Tokenize a string: Difference between revisions

m
imported>MattDESTROYER
imported>Arakov
Line 1,690:
 
=={{header|Elena}}==
ELENA 46.x:
<syntaxhighlight lang="elena">import system'routines;
import extensions;
Line 1,696:
public program()
{
varauto string := "Hello,How,Are,You,Today";
string.splitBy:(",").forEach::(s)
{
console.print(s,".")
Anonymous user