gpt4 book ai didi

iphone - 替换出现的 NSString - iPhone

转载 作者:太空狗 更新时间:2023-10-30 03:08:24 26 4
gpt4 key购买 nike

我有一个很长的 NSString,我试图在其中替换特殊字符。我的部分字符串如下所示:

"veau (c\u00f4telette)","veau (filet)","agneau (gigot)","agneau (c\u00f4telette)","b**\u0153**uf (hach\u00e9)","porc (hach\u00e9)"

我想用“oe”替换所有的\u0153。我试过:

[response stringByReplacingOccurrencesOfString:@"\u0153" withString:@"oe"];

但它不起作用....我不明白为什么!

最佳答案

反斜杠是 escape character , 所以如果你想在字符串文字中指定实际的反斜杠字符,你需要使用两个反斜杠。

NSString *new = [old stringByReplacingOccurrencesOfString: @"\\u0153" withString:@"oe"];

关于iphone - 替换出现的 NSString - iPhone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2492236/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com