3 lines
87 B
Text
3 lines
87 B
Text
var s = "Hello,How,Are,You,Today"
|
|
var t = s.split(",").join(".") + "."
|
|
System.print(t)
|