5 lines
121 B
Swift
5 lines
121 B
Swift
import Foundation
|
|
|
|
let text = "Hello,How,Are,You,Today"
|
|
let tokens = text.componentsSeparatedByString(",")
|
|
print(tokens)
|