Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些将出现在我的 XML 中的 html 标签,我想替换以下标签格式之间的所有文本
<p><b>Text to be replaced</b><br/></p>
这里要替换的文本应替换为任何文本。
请帮帮我。
你试过这个吗:-
var pattern:RegExp = /<p><b>.*?<\/b><br\/><\/p>/; str.replace(pattern, "<p><b>any text</b><br/></p>");