JavaScript match() 方法
Posted tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript match() 方法相关的知识,希望对你有一定的参考价值。
match() 方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。
该方法类似 indexOf() 和 lastIndexOf(),但是它返回指定的值,而不是字符串的位置。
var str="Hello world!" document.write(str.match("world") + "<br />") document.write(str.match("World") + "<br />") document.write(str.match("worlld") + "<br />") document.write(str.match("world!"))
以上是关于JavaScript match() 方法的主要内容,如果未能解决你的问题,请参考以下文章