var reg=/[abcd]/
var str="haha"
str.match(reg) //["a"]
.test() 判斷獲取的字符串是否符合正則的設置的規(guī)則
正則表達式.test(要判斷的字符串)
var reg=/[abcd]/
var str="haha"
console.log(reg.test(str))//true
.replace()//獲取符合正則的字符串最冰,改寫成要的值(會修改源字符串)
字符串.replace(正則狭魂,"要修改的值")
var str2="hello jirengu, hello world,hcllo ruoyu"
var reg=/h[a-z]llo/g
var str2=str2.replace(reg,"hello")
console.log(str2)//hello jirengu, hello world,hello ruoyu