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