RosettaCodeData/Task/Tokenize-a-string/GAP/tokenize-a-string.gap
2023-07-01 13:44:08 -04:00

5 lines
155 B
Text

SplitString("Hello,How,Are,You,Today", ",");
# [ "Hello", "How", "Are", "You", "Today" ]
JoinStringsWithSeparator(last, ".");
# "Hello.How.Are.You.Today"