爲什麼使用正則表達式在這種情況下無法工作不欠任何人任何東西到另一個用正則表達式字邊界正則表達式在JavaScript
> str.replace(/\bno\b/g, 'yes');
'Owe yes one anything to another'
> str.replace(new RegExp('\bno\b','g'),'yes');
'Owe no one anything to another'
?我需要使用它,這樣我可以
var regex = new RegExp('\b'+ **myterm** +'\b','g'); or
var regex = new RegExp('(^|\s)'+ **myterm** +'(?=\s|$)','g');
'「\ b」'是[backspace character(U + 0008)](http://www.fileformat.info/info/unicode/char/0008/index.htm)如果你想要反斜槓和ab('「\\ b」') – Esailija