3 lines
104 B
Text
3 lines
104 B
Text
var str = "Hello,How,Are,You,Today"
|
|
var strings = str.Split(',')
|
|
print(values: strings, separator: ".")
|