使用NSRegularExpressionSearch在NSString中如何查找项目符号或编号项目符号?

时间:2015-04-13 06:18:48

标签: ios objective-c nsstring nsattributedstring bullet-span

我有一个NSString,可能有ordered bulletsunordered bullets字符串。我想从字符串中删除那些子弹。

有人可以帮我解决这个问题吗? 提前谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码修剪项目符号。我没有使用正则表达式。我想知道如何识别和删除子弹..

NSString *bulletString = @"\u2022";
self.lbl.text=[strWithBullets stringByReplacingOccurrencesOfString:bulletString withString:@""];

希望它可以帮助你......!