区分大小写的字符串替换目标C.

时间:2013-09-11 11:43:53

标签: objective-c replace nsstring

我需要从区分大小写的字符串中替换子字符串。例如,在以下字符串中:

replace the String with a string

我需要将String替换为S,而sentence替换为string,但其他stringByReplacingOccurrencesOfString必须不受影响。我能做些什么来实现这个目标?我试过{{1}},但它不区分大小写。

1 个答案:

答案 0 :(得分:1)

您可以使用

stringByReplacingOccurrencesOfString:withString:options:range:

并且不要使用NSCaseInsensitiveSearch选项。