我需要从区分大小写的字符串中替换子字符串。例如在以下字符串中:
replace the String with a string
我需要String
用大写S
替换这个词,sentence
但另一个string
必须不受影响。我能做些什么来实现这一目标?我试过了,stringByReplacingOccurrencesOfString
但它不区分大小写。
我需要从区分大小写的字符串中替换子字符串。例如在以下字符串中:
replace the String with a string
我需要String
用大写S
替换这个词,sentence
但另一个string
必须不受影响。我能做些什么来实现这一目标?我试过了,stringByReplacingOccurrencesOfString
但它不区分大小写。