source  RegExp  instance property JS Home  <<  JS Reference  <<  RegExp  <<  source

Description

Returns the text of the pattern.

Syntax

Signature Description
aRegExp.sourceReturns 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);

Press the button below to action the above code:

Related Tutorials

JavaScript Intermediate Tutorials - Lesson 9 - Regular Expressions

JavaScript Basics

JavaScript Basics

JavaScript Intermediate

JavaScript Intermediate

JavaScript Advanced

JavaScript Advanced

JavaScript Reference

JavaScript Entities

Globals

RegExp

Class Properties
prototype
Instance Properties
constructor
global
ignoreCase
lastIndex
multiline
source
Class Methods
None.
Instance Methods Getters
exec()
test()
toString()
Instance Methods Setters
None.

Statements

Operators