var whatever = 'Some [b]random[/b] text in a [b]sentence.[/b]';
如何在 jQuery中替换[b]
with的每个实例和with的<b>
每个实例?[/b]
</b>
我试图用正则表达式来做,但我无法让它正常工作。
var whatever = 'Some [b]random[/b] text in a [b]sentence.[/b]';
如何在 jQuery中替换[b]
with的每个实例和with的<b>
每个实例?[/b]
</b>
我试图用正则表达式来做,但我无法让它正常工作。
使用正则表达式,它将是:
whatever = whatever.replace(/\[b\]/g,'<b>').replace(/\[\/b\]/g,'</b>');
这似乎是最简单的解决方案
string.replace("[b]", "<b>");
如果做不到这一点,你可以使用 PHP 来完成它,str_replace
如果它被上传到数据库。
whatever = whatever.replace(/\[b\]/g, '<br>').replace(/\[\/b\]/g, '</b>');