我正在编写的一些代码中按照这些思路做一些事情
txt = txt.replaceAll('\n','').replaceAll('<b>','[bold]').replaceAll('</b>','[/bold]')
.replaceAll('<strong>','[bold]').replaceAll('</strong>','[/bold]')....
其中 replaceAll 是 String.prototype 扩展。这完美无缺,但我想知道 -
以这种方式链接太多方法有什么缺点吗?使用在“oneer”中完成工作的正则表达式可能会更好吗?如果是这样,正则表达式会是什么样子?(我不太擅长正则表达式)