js搜索字符串,成功后返回找到的字符串-JavaScript
字符串带有一个match方法用于搜索字符串,如果找到指定的字符串则返回搜索字符串,如果未找到则返回null,match方法区分大小写
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!"));
返回结果
world null null world!