我需要从区分大小写的字符串中替换子字符串。例如,在以下字符串中:
replace the String with a string
我需要将String
替换为S
,而sentence
替换为string
,但其他stringByReplacingOccurrencesOfString
必须不受影响。我能做些什么来实现这个目标?我试过{{1}},但它不区分大小写。
答案 0 :(得分:1)
您可以使用
stringByReplacingOccurrencesOfString:withString:options:range:
并且不要使用NSCaseInsensitiveSearch
选项。