本文实例讲述了js中正则的查找match()与替换replace()的用法。分享给大家供大家参考。具体如下:
代码如下:<html>
<head>
<script type="text/javascript">
//string.match(正则):正则查找字符串,返回符合正则的字符或字符串
function t1(){
var con = document.getElementsByName('content')[0].value;//需要查找的内容
var reg = /\Bhi\B/g;//匹配中间有hi的单词。g为模式增强符,表示全局匹配
alert(con.match(reg));
}
//string.replace(正则,用什么替换):返回被替换后的string
function t2(){
var con = document.getElementsByName('content')[0].value;//需要查找的内容
var reg = /<script.*<\/script>/;//把javascript代码替换为空
alert(con.replace(reg,''));
}
</script>
</head>
<body>
<textarea rows="5" cols="30" name="content"></textarea><br />
<button onclick="t1();">正则查找字符串match()</button><br />
<button onclick="t2();">正则查找字符串replace()</button><br />
</body>
</html>
希望本文所述对大家的正则表达式学习有所帮助。
您可能感兴趣的文章:js replace(a,b)之替换字符串中所有指定字符的方法js正则表达式replace替换变量方法javascript正则表达式使用replace()替换手机号的方法JavaScript字符串对象replace方法实例(用于字符串替换或正则替换)js使用正则实现ReplaceAll全部替换的方法js使用正则实现ReplaceAll全部替换的方法JS使用replace()方法和正则表达式进行字符串的搜索与替换实例JS Replace 全部替换字符的用法小结JS利用正则配合replace替换指定字符JS、replace利用正则表达式替换SQL所有参数为指定格式的数据js中字符替换函数String.replace()使用技巧js replace 全局替换的操作方法