JavaScript利用正则表达式替换字符串中的内容

话不多说,请看具体实现代码

//从字符串'Is this all there is'中剪去'is': var str='Is this all there is'; var subStr=new RegExp('is');//创建正则表达式对象 var result=str.replace(subStr,"");//把'is'替换为空字符串 console.log(result);//Is th all there is var subStr=new RegExp('is','i');//创建正则表达式对象,不区分大小写 var result=str.replace(subStr,"");//把'is'替换为空字符串 console.log(result);//this all there is var subStr=new RegExp('is','ig');//创建正则表达式对象,不区分大小写,全局查找 var result=str.replace(subStr,"");//把'is'替换为空字符串 console.log(result);//th all there var subStr=https://www.jb51.net/is/ig;//直接量法创建正则表达式对象,不区分大小写,全局查找 var result=str.replace(subStr,"");//把'is'替换为空字符串 console.log(result);//th all there console.log(str);//Is this all there is 可见replace并不改变原始str

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwfjpz.html