javascript中的正则函数有:1.test,检测一个字符串是否匹配某个模式;2.match,在字符串内检索指定的值;3.replace,在字符串中替换字符;4.search,检索字符串中指定的子字符串;javascript中的正则函数
javascript中的正则函数有:1.test,检测一个字符串是否匹配某个模式;2.match,在字符串内检索指定的值;3.replace,在字符串中替换字符;4.search,检索字符串中指定的子字符串;
javascript中的正则函数有以下几种
test
javascript中test函数的作用是用于检测一个字符串是否匹配某个模式。
test函数使用方法:
var str = "hello world!";
var patt1 = new RegExp("world");
var result = patt1.test(str);
document.write(result); //返回true
match
javascript中match函数的作用是用于在字符串内检索指定的值。
match函数使用方法:
var str="Hello world!"
document.write(str.match("world!")) //返回world!
document.write(str.match("worlld")) //返回null
replace
javascript中replace函数的作用是用于在字符串中替换字符。
replace函数使用方法:
var str="Hello world!"
document.write(str.replace(/world!/, "China!")) //返回Hello China!
search
javascript中search函数的作用是用于检索字符串中指定的子字符串。
search函数使用方法:
var str="Hello world!"
document.write(str.search(/world!/)) //返回6
--结束END--
本文标题: javascript正则函数都有哪些
本文链接: https://lsjlt.com/news/111421.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0