7 lines
167 B
Text
7 lines
167 B
Text
s = "Hello,How,Are,You,Today"
|
|
a = split(s, ",")
|
|
t = join(a, ".")
|
|
|
|
println("The string \"", s, "\"")
|
|
println("Splits into ", a)
|
|
println("Reconstitutes to \"", t, "\"")
|