标签: ios iphone date swift time
如果我有xAM - yPM这样的字符串,是否可以使用-将字符串拆分成2个字符串作为字符串被拆分的点?
xAM - yPM
-
答案 0 :(得分:1)
您可以使用componentsSeparatedByString功能:
componentsSeparatedByString
var splittedArray = yourString.componentsSeparatedByString(" - ") println(splittedArray[0]) // "xPM" println(splittedArray[1]) // "yPM"