Peter Chen
2018-02-19
以斜線(/)夾住正規表達式,此方式不能是動態的,效能較object方式好。
使用RegExp來實體化, 輸入的格式可以是變數。
var re = /ab+c/;
var re = new RegExp('ab+c');
By Peter Chen