如何将字符串(例如" xPM-yPM")分成两个字符串,Swift

时间:2015-03-25 11:42:35

标签: ios iphone date swift time

如果我有xAM - yPM这样的字符串,是否可以使用-将字符串拆分成2个字符串作为字符串被拆分的点?

1 个答案:

答案 0 :(得分:1)

您可以使用componentsSeparatedByString功能:

var splittedArray = yourString.componentsSeparatedByString(" - ")
println(splittedArray[0]) // "xPM"
println(splittedArray[1]) // "yPM"