replaceNSString – iPhone的出现
我有一个很长的NSString,我试图replace特殊字符。 我的部分string如下所示:
"veau (c\u00f4telette)","veau (filet)","agneau (gigot)","agneau (c\u00f4telette)","b**\u0153**uf (hach\u00e9)","porc (hach\u00e9)"
我想用“oe”replace所有的\ u0153。 我试过了:
[response stringByReplacingOccurrencesOfString:@"\u0153" withString:@"oe"];
但它不工作….我不明白为什么!
反斜杠是一个转义字符 ,所以如果要在string文字中指定实际的反斜杠字符,则需要使用两个反斜杠。
NSString *new = [old stringByReplacingOccurrencesOfString: @"\\u0153" withString:@"oe"];
NSString是不可变的,所以函数生成一个新的string,你必须存储:
NSString *new = [old stringByReplacingOccurrencesOfString:@"\u0153" withString:@"oe"];