6 lines
105 B
Nim
6 lines
105 B
Nim
|
|
import strutils
|
||
|
|
|
||
|
|
let text = "Hello,How,Are,You,Today"
|
||
|
|
let tokens = text.split(',')
|
||
|
|
echo tokens.join(".")
|