我有一个带有属性和属性值的 xml 标记:
我如何编写正则表达式来放置:
<tag> - blue color
attribute - red color
= - black color
"value" - violet color
现在我有
Pattern tagsPattern = Pattern.compile("<[^<>]*?>");
效果很好,可以找到 < 和 > 之间的所有内容。剩下的我不知道怎么办...
我有一个带有属性和属性值的 xml 标记:
我如何编写正则表达式来放置:
<tag> - blue color
attribute - red color
= - black color
"value" - violet color
现在我有
Pattern tagsPattern = Pattern.compile("<[^<>]*?>");
效果很好,可以找到 < 和 > 之间的所有内容。剩下的我不知道怎么办...