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