Condividi tramite


Proprietà source

Aggiornamento: novembre 2007

Restituisce una copia del testo del criterio di espressione regolare. Di sola lettura.

rgExp.source

Argomenti

  • rgExp
    Obbligatorio. Oggetto Regular Expression.

Note

L'argomento rgExp può essere una variabile in cui è memorizzato l'oggetto Regular Expression o un'espressione regolare in formato letterale.

Esempio

Nel codice seguente viene illustrato l'utilizzo della proprietà source:

var src : String = "Spain";
var re : RegExp = /in/g;
var s1;
// Test string for existence of regular expression.
if (re.test(src))
   s1 = " contains ";
else
   s1 = " does not contain ";
// Get the text of the regular expression itself.
print("The string " + src + s1 + re.source + ".");

L'output del programma è il seguente:

The string Spain contains in.

Requisiti

Versione 3

Si applica a:

Oggetto Regular Expression

Vedere anche

Concetti

Sintassi delle espressioni regolari

Riferimenti

Oggetto Regular Expression