Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |
Microsoft® JScript® source Property |
Language Reference Version 3 |
Returns a copy of the text of the regular expression pattern. Read-only.
rgexp.sourceThe rgexp argument is a Regular expression object. It can be a variable name or a literal.
The following example illustrates the use of the source property:
function SourceDemo(re, s) { var s1; // Test string for existence of regular expression. if (re.test(s)) s1 = " contains "; else s1 = " does not contain "; // Get the 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. |