1

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

replace the String with a string

我需要String用大写S替换这个词,sentence但另一个string必须不受影响。我能做些什么来实现这一目标?我试过了,stringByReplacingOccurrencesOfString但它不区分大小写。

4

1 回答 1

1

您可以使用

stringByReplacingOccurrencesOfString:withString:options:range:

并且不要使用NSCaseInsensitiveSearch选项。

于 2013-09-11T11:45:50.713 回答