Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |
Microsoft® JScript® test Method |
Language Reference Version 3 |
Returns a Boolean value that indicates whether or not a pattern exists in a searched string.
rgexp.test(str)The test method syntax has these parts:
Part Description rgexp Required. A Regular Expression object. Can be a variable name or a literal. str Required. The string to test a search on.
The test method checks to see if a pattern exists within a string and returns true if so, and false otherwise.The RegExp object is not modified by the test method.
The following example illustrates the use of the test method:
function TestDemo(re, s) { var s1; // Test string for existence of regular expression. if (re.test(s)) s1 = " contains "; else s1 = " does not contain "; // Get text of the regular expression itself. return(s + s1 + re.source); }
Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |