Objective C 有剥离标签功能吗?
我正在寻找一个目标 C 函数(自定义或内置),它可以从字符串中删除 html 标签,类似于可以在此处找到的 PHP 版本:
http://php.net/manual/en/function.strip-tags.php
任何帮助将不胜感激!
I am looking for an objective C function (custom or built-in) that strips html tags from a string, similar to PHP's version that can be found here:
http://php.net/manual/en/function.strip-tags.php
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是删除
<
和>
字符以及它们之间的所有内容,我认为这就足够了:This just removes
<
and>
characters and everything between them, which I suppose is sufficient: