5 lines
155 B
Text
5 lines
155 B
Text
SplitString("Hello,How,Are,You,Today", ",");
|
|
# [ "Hello", "How", "Are", "You", "Today" ]
|
|
|
|
JoinStringsWithSeparator(last, ".");
|
|
# "Hello.How.Are.You.Today"
|