Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个关于 NSString 中撇号字符的问题。
我正在从某个 Web 服务接收 json 对象,并且撇号字符在那里表示为“”。
我应该手动将此字符替换为撇号,还是可能以某种方式更改字符串的编码并使 NSString 显示为 '?
谢谢你。
你试过这个吗?只是尝试过滤你的字符串然后记录它。
yourString = [yourString stringByReplacingOccurrencesOfString:@"'''" withString:@""];