Esempio
Restituisce il testo del modello RegExp:
var str = "Visit w3ii";
var patt1 = /W3S/g;
var res = "The text of
the RegExp is: " + patt1.source;
Il risultato della res sarà:
The text of the RegExp is: W3S
Prova tu stesso " Definizione e l'utilizzo
La proprietà source restituisce il testo del modello RegExp.
Supporto browser
Proprietà | |||||
---|---|---|---|---|---|
source | sì | sì | sì | sì | sì |
Sintassi
RegExpObject .source
Valore di ritorno
Tipo | Descrizione |
---|---|
String | Il testo del modello RegExp |
Dettagli tecnici
Versione JavaScript: | 1.2 |
---|
<JavaScript Object RegExp