Derniers tutoriels de développement web
 

JavaScript source Property

<JavaScript Object RegExp

Exemple

Retour le texte du motif RegExp:

var str = "Visit w3ii";
var patt1 = /W3S/g;
var res = "The text of the RegExp is: " + patt1.source;

Le résultat de res sera:

The text of the RegExp is: W3S
Essayez vous - même »

Définition et utilisation

La propriété source renvoie le texte du motif RegExp.


Support du navigateur

Propriété
source Oui Oui Oui Oui Oui

Syntaxe

RegExpObject .source

Valeur de retour

Type La description
String Le texte du motif RegExp

Détails techniques

JavaScript Version: 1.2

<JavaScript Object RegExp