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

How to find bullets or numbered bullets is present in NSString using NSRegularExpressionSearch?

我有一个 NSString,它可能有 ordered bulletsunordered bullets 作为字符串。我想单独从弦中取出那颗子弹。

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

您可以使用以下代码 trim 子弹。我没有使用正则表达式。我给出了如何识别和移除子弹的想法..

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

希望对您有所帮助...!