js正则查找match()与替换replace()用法实例
本文实例讲述了js中正则的查找match()与替换replace()的用法。分享给大家供大家参考。具体如下:
<html>
<head>
<scripttype="text/javascript">
//string.match(正则):正则查找字符串,返回符合正则的字符或字符串
functiont1(){
varcon=document.getElementsByName('content')[0].value;//需要查找的内容
varreg=/\Bhi\B/g;//匹配中间有hi的单词。g为模式增强符,表示全局匹配
alert(con.match(reg));
}
//string.replace(正则,用什么替换):返回被替换后的string
functiont2(){
varcon=document.getElementsByName('content')[0].value;//需要查找的内容
varreg=/<script.*<\/script>/;//把javascript代码替换为空
alert(con.replace(reg,''));
}
</script>
</head>
<body>
<textarearows="5"cols="30"name="content"></textarea><br/>
<buttononclick="t1();">正则查找字符串match()</button><br/>
<buttononclick="t2();">正则查找字符串replace()</button><br/>
</body>
</html>
希望本文所述对大家的正则表达式学习有所帮助。