2019-03-15使用实例、应用技巧、基本知识点
js 正则表达式 的匹配查找,替换,匹配两个特定字符间之前之后的内容
时间:2019-03-15
本文章向大家介绍js 正则表达式 的匹配查找js正则表达式匹配金额,替换,匹配两个特定字符间之前之后的内容js正则表达式匹配金额,主要包括js 正则表达式 的匹配查找,替换,匹配两个特定字符间之前之后的内容使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。
js截取两个字符串之间的内容:
<pre>var str = "aaabbbcccdddeeefff";
str = str.match(/aaa(S*)fff/)[1];
alert(str);//结果bbbcccdddeee</pre>
js截取某个字符串前面的内容:
<pre>var str = "aaabbbcccdddeeefff";
tr = str.match(/(S*)fff/)[1];
alert(str);//结果aaabbbcccddd</pre>
js截取某个字符串后面的内容:
<pre>var str = "aaabbbcccdddeeefff";
str = str.match(/aaa(S*)/)[1];
alert(str);//结果bbbcccdddeeefff</pre>
JS利用正则表达式替换字符串中的内容:
<pre>//从字符串'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=/is/ig;//直接量法创建正则表达式对象,不区分大小写,全局查找
var result=str.replace(subStr,"");//把'is'替换为空字符串
console.log(result);//th all there
console.log(str);//Is this all there is 可见replace并不改变原始str</pre>
发表评论
热门文章
Spimes主题专为博客、自媒体、资讯类的网站设计....
一款个人简历主题,可以简单搭建一下,具体也比较简单....
仿制主题,Typecho博客主题,昼夜双版设计,可....
用于作品展示、资源下载,行业垂直性网站、个人博客,....
热评文章
最新评论
Z.
11月29日
博主你好,Deng插件,这个点击不进去,提示这个(Warning: require_once(/www/wwwroot/w.zzy2020.com/usr/plugins/Deng/Deng/html/profile.php): failed to open stream: No such file or directory in /www/wwwroot/w.zzy2020.com/Fresh/extending.php on line 26
Fatal error: require_once(): Failed opening required '/www/wwwroot/w.zzy2020.com/usr/plugins/Deng/Deng/html/profile.php' (include_path='.:/www/server/php/72/lib/php') in /www/wwwroot/w.zzy2020.com/Fresh/extending.php on line 26)
点都德
2天前
:喷::喜欢::怒::黑线: