JavaScript正則表達式模式匹配(3)——貪婪模式和惰性模式
阿新 • • 發佈:2018-01-31
表達 post log lac 模式 模式匹配 替換 strong pre
1 var pattern=/[a-z]+/; //這裏使用了貪婪模式, 2 var str=‘abcdefg‘; 3 alert(str.replace(pattern,‘1‘)); //所有的字符串變成了1 4 5 var pattern=/[a-z]+?/; //這裏使用了惰性模式, 6 var str=‘abcdefg‘; 7 alert(str.replace(pattern,‘1‘)); //只有第一個字符變成了1,後面沒有匹配 8 9 var pattern=/[a-z]+?/; //開啟全局,並且使用惰性模式, 10 var str=‘abcdefg‘;11 alert(str.replace(pattern,‘1‘)); //每一個字母替換成了1 12 13 var pattern=/6(.*)6/; //使用了貪婪模式, 14 var str=‘6google6 6google6 6google6‘; //匹配到了google6 6google6 6google 15 document.write(str.replace(pattern,‘<strong>$1<strong>‘)); //結果:<strong>google6 6google6 6google<strong> 16 17 var pattern=/6(.*?)6/; //使用了惰性模式, 18 var str=‘6google6 6google6 6google6‘; 19 document.write(str.replace(pattern,‘<strong>$1<strong>‘)); //結果:<strong>google<strong> 6google6 6google6 20 21 var pattern=/6(.*?)6/g; //使用了惰性模式,開啟全局 22 var str=‘6google6 6google6 6google6‘; 23 document.write(str.replace(pattern,‘<strong>$1<strong>‘));24 //結果:<strong>google<strong> <strong>google<strong> <strong>google<strong> 25 //結果正確 26 27 var pattern=/6([^6]*)6/g; //另一種惰性,屏蔽了6的匹配,也就是兩邊的包含字符 28 var str=‘6google6 6google6 6google6‘; 29 document.write(str.replace(pattern,‘<strong>$1<strong>‘));
JavaScript正則表達式模式匹配(3)——貪婪模式和惰性模式