String.match() javascript - Javascript Send mail vote down 0 vote down 0 Views : 402
Tagged in : Javascript
String.match() javascript:

The match() method searches the string for the regular expression passed to the method.
var str="Rain Rain Go Away";
var patt1=/ain/gi;
document.write(str.match(patt1));


By - Ramya, On - 2010-02-06




    Login to add Comments .