11 lines
159 B
Go
11 lines
159 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
s := "Hello,How,Are,You,Today"
|
|
fmt.Println(strings.Join(strings.Split(s, ","), "."))
|
|
}
|