在swift中替换字符串中的字符?

时间:2017-01-11 12:23:31

标签: ios swift xcode string

我有一个字符串为“12:66 PM”。现在我想用60替换字符串66.所以我想检查“:”之后是否应该用60或任何值替换两个字符。

请建议

2 个答案:

答案 0 :(得分:5)

您可以使用regexp-search-and-replace:

string.replacingOccurrences(of: "regexp", with: "replacement", options: .regularExpression)

所以,在你的情况下:

var time = "12:66 PM"
time.replacingOccurrences(of: ":\\d\\d", with: ":60", options: .regularExpression)
// > "12:60 PM"

将此抽象为函数是直截了当的:

func replaceMinutes(in time: String, with minutes: String) -> String {
    return time.replacingOccurrences(of: ":\\d\\d", 
                                     with: ":\(minutes)", 
                                     options: .regularExpression)
}

如有必要,您可能需要检查输入字符串是否符合您的预期:

    nil != time.range(of: "^\\d\\d:\\d\\d [AP]M$", options: .regularExpression)
&&  nil != minutes.range(of: "^\\d\\d$", options: .regularExpression)

如果您无法理解其中的任何效果,建议您阅读a)basics of the Swift language和b)regular expressions

答案 1 :(得分:-5)

这是逻辑,你怎么能这样做 首先,您要获取输入var的最后一个索引

在Java中我们可以这样做

String l_name = input .substring(input .lastIndexOf(":"));

之后,您可以使用带有变量的新输出替换l_name 我希望它会有所帮助..