Skip to content

Commit a0e5e2e

Browse files
cortizgjoaquinelio
andauthored
Update 9-regular-expressions/09-regexp-quantifiers/article.md
Co-authored-by: joaquinelio <joaquinelio@gmail.com>
1 parent 3ad5d52 commit a0e5e2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 9-regular-expressions/09-regexp-quantifiers

9-regular-expressions/09-regexp-quantifiers/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ El rango: `pattern:{3,5}`, coincide 3-5 veces
2727
: Para encontrar números de 3 a 5 dígitos, podemos poner los límites en llaves: `pattern:\d{3,5}`
2828

2929
```js run
30-
alert( "No tengo 12, sino, 1234 años de edad".match(/\d{3,5}/) ); // "1234"
30+
alert( "No tengo 12, sino 1234 años de edad".match(/\d{3,5}/) ); // "1234"
3131
```
3232

3333
Podemos omitir el límite superior

0 commit comments

Comments
 (0)