Flex 4.5 - 如何剥离标签?
如何在 Flex 4.5 / 4.6 中从字符串中去除 (HTML) 标签?
How do you strip (HTML) tags from a String in Flex 4.5 / 4.6?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Flex 4.5 / 4.6 中从字符串中去除 (HTML) 标签?
How do you strip (HTML) tags from a String in Flex 4.5 / 4.6?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我不认为有一个内置函数可以像 php 中那样删除标签。
但是,您可以使用正则表达式来删除
<
和>
之间的所有文本,我现在必须运行,但如果您可以遵循我的思路:
虽然字符串正则表达式测试为阳性,请将出现的情况替换为空字符串
这应该删除此类型的所有出现:
编辑
输出:
I don't think there's an inbuilt function to strip the tags like in php.
However, you could use a regular expression to remove all text between
<
and>
I gotta run now, but if you could follow my line of thought:
While the string tests positive for the regexp, replace the occurrence with an empty string
That should remove all occurrences of this type:
EDIT
OUTPUT: