JS学习之路之JavaScript match() 方法
本站寻求有缘人接手,详细了解请联系站长QQ1493399855
match() 方法,在字符串内找到相应的值并返回这些值,()内匹配字符串或者正则表达式。
该方法类似 indexOf() 和 lastIndexOf(),但是它返回指定的值,而不是字符串的位置。
demo1:
<script type="text/javascript">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!"))</script> //结果 world null null world!
demo2:
<script type="text/javascript">var str="1 plus 2 equal 3"
document.write(str.match(/d+/g)
)</script>
输出:
1,2,3
ps.引自http://www.w3school.com.cn/jsref/jsref_match.asp