从字符串中移除\\ U00a0 - iOS

时间:2017-02-10 13:24:18

标签: ios objective-c nsstring

我从服务器收到了以下字符串。

body = "Subject: This is from webportal \nTo: My Account \n...\n\n\nLTD Emojis:100k:ltd:eyes:trophy    \nDefault Emoji \\ud83d\\ude1b\\ud83d\\ude31\\ud83d\\ude0d \\ud83d\\ude3b\U00a0\\ud83d\\ude48     \n-- \nStephen acc";

我想从字符串中删除" \ U00a0"这是删除它但不起作用的代码。

testString=[testString stringByReplacingOccurrencesOfString:@"\\U00a0" withString:@""];

有没有其他方法可以完成这件事。

1 个答案:

答案 0 :(得分:0)

对于遇到此问题的其他人。这是这一行的一个简单改变。它解决了我的问题。

testString=[testString stringByReplacingOccurrencesOfString:@"\u00a0" withString:@""];