Skip to content

Commit 930a0df

Browse files
authored
Update 9-regular-expressions/08-regexp-character-sets-and-ranges/article.md
1 parent 1f62050 commit 930a0df

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/08-regexp-character-sets-and-ranges

1 file changed

+1
-1
lines changed

9-regular-expressions/08-regexp-character-sets-and-ranges/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ El siguiente ejemplo busca cualquier carácter, excepto letras, dígitos y espac
111111
alert( "[email protected]".match(/[^\d\sA-Z]/gi) ); // @ y .
112112
```
113113

114-
## Escapando dentro de []
114+
## Escapando dentro de corchetes []
115115

116116
Por lo general, cuando queremos encontrar exactamente un carácter especial, necesitamos escaparlo con `pattern:\.`. Y si necesitamos una barra invertida, entonces usamos `pattern:\\`, y así sucesivamente.
117117

0 commit comments

Comments
 (0)