8 lines
167 B
Text
8 lines
167 B
Text
|
|
[indent=4]
|
||
|
|
|
||
|
|
init
|
||
|
|
str:string = "Hello,How,Are,You,Today"
|
||
|
|
words:array of string[] = str.split(",")
|
||
|
|
joined:string = string.joinv(".", words)
|
||
|
|
print joined
|