删除HTML标签的正则表达式 有时候会需要删除一段字符串中的HTML标签,可以使用以下正则表达式,此处使用Ruby为例:
# define string first# and trip HTML tagsstring.gsub(/<\/?.*?>/, "")