Skip to content

Commit a82a73a

Browse files
authored
Update 9-regular-expressions/08-regexp-character-sets-and-ranges/article.md
1 parent 00478bf commit a82a73a

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
@@ -129,7 +129,7 @@ Un punto `.` dentro de corchetes significa solo un punto. El patrón `pattern:[.
129129
En el siguiente ejemplo, la expresión regular `pattern: [-().^+]` busca uno de los caracteres `-().^+`:
130130

131131
```js run
132-
// no necesita escapar
132+
// no es necesario escaparlos
133133
let regexp = /[-().^+]/g;
134134

135135
alert( "1 + 2 - 3".match(regexp) ); // Coincide +, -

0 commit comments

Comments
 (0)