JavaScript source Property
Example
Return the text of the RegExp pattern:
var str = "Visit W3Schools";
var patt1 = /W3S/g;
var res = "The text of
the RegExp is: " + patt1.source;
The result of res will be:
The text of the RegExp is: W3S
Try it yourself »
Definition and Usage
The source property returns the text of the RegExp pattern.
Browser Support
The source property is supported in all major browsers.
Syntax
RegExpObject.source
Return Value
Type | Description |
---|---|
String | The text of the RegExp pattern |
Technical Details
JavaScript Version: | 1.2 |
---|
JavaScript RegExp Object