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