Esempio
Fare una ricerca globale di caratteri di spazio bianco di una stringa:
var str = "Is this all there is?";
var patt1 = /\s/g;
Tutti gli spazi nel testo otterrà un match (four matches) :
Is this all there is?
Prova tu stesso " Definizione e l'utilizzo
Il \ s metacarattere viene utilizzato per trovare uno spazio bianco.
Un carattere di spazio bianco può essere:
- Un carattere di spazio
- Un carattere di tabulazione
- Un carattere restituito
- Una nuova linea carattere
- Un carattere di tabulazione verticale
- Un carattere di avanzamento
Supporto browser
Espressione | |||||
---|---|---|---|---|---|
\s | sì | sì | sì | sì | sì |
Sintassi
new RegExp("\\s")
or simply:
/\s/
Sintassi con modificatori
new RegExp("\\s","g")
or simply:
/\s/g
<JavaScript Object RegExp