编程语言
首页 > 编程语言> > JavaScript 使用正则表达式操作字符串

JavaScript 使用正则表达式操作字符串

作者:互联网

var testString = "Ada Lovelace and Charles Babbage designed the first computer and the software that would have run on it.";

var expression = /and/gi;

var andCount = testString.match(expression).length;

 

/ 是这个正则表达式的头部

the 是我们想要匹配的模式

/ 是这个正则表达式的尾部

g 代表着 global(全局),意味着返回所有的匹配而不仅仅是第一个。

i 代表着忽略大小写,意思是当我们寻找匹配的字符串的时候忽略掉字母的大小写。

标签:匹配,正则表达式,JavaScript,testString,var,大小写,字符串,expression
来源: https://www.cnblogs.com/chendi618/p/11000447.html