source  RegExp  instance propertyS2C Home
      « Globals « RegExp « source
Description
Returns the text of the pattern.
Syntax
| Signature | Description | 
|---|---|
| aRegExp.source | Returns the text of the pattern. | 
Parameters
None.
Examples
The code below displays the source property of some RegExp instances.
var aRegExp = /\d/;
var bRegExp = /[^A-Za-z0-9_]/;
var regexpValues = new Array(2);
regexpValues[0] = 'aRegExp source: ' + aRegExp.source + '\n';
regexpValues[1] = 'bRegExp source: ' + bRegExp.source;
alert(regexpValues);
Related Tutorials
JavaScript Intermediate Tutorials - Lesson 9 - Regular Expressions
 
  
  
  
 Homepage
 Homepage Top
 Top