标签: regex actionscript-3 replace html
我有一些html标签会出现在我的XML中,我想用以下格式的标签替换所有文本
<p><b>Text to be replaced</b><br/></p>
此处 要替换的文字 应替换为任何文字。
请帮帮我。
答案 0 :(得分:0)
你试过这个: -
var pattern:RegExp = /<p><b>.*?<\/b><br\/><\/p>/; str.replace(pattern, "<p><b>any text</b><br/></p>");