3 lines
97 B
Text
3 lines
97 B
Text
let text = 'Hello,How,Are,You,Today'
|
|
let tokens = text.split(||,||)
|
|
print tokens.join(with: '.')
|