--- id: 5d712346c441eddfaeb5bdef title: Match All Numbers challengeType: 1 videoUrl: '' localeTitle: Corresponder todos os números --- ## Description
Você aprendeu atalhos para padrões de string comuns, como alfanuméricos. Outro padrão comum é procurar apenas dígitos ou números. O atalho para procurar caracteres de dígitos é \d , com um d minúsculo. Isso é igual à classe de caracteres [0-9] , que procura um único caractere de qualquer número entre zero e nove.
## Instructions
Use a classe de caractere abreviada \d para contar quantos dígitos estão em títulos de filmes. Números escritos ("seis" em vez de 6) não contam.
## Tests
```yml tests: - text: Seu regex deve usar o caractere de atalho para corresponder aos caracteres do dígito testString: 'assert(/\\d/.test(numRegex.source), "Your regex should use the shortcut character to match digit characters");' - text: Seu regex deve usar o sinalizador global. testString: 'assert(numRegex.global, "Your regex should use the global flag.");' - text: Seu regex deve encontrar um dígito em "9" . testString: 'assert("9".match(numRegex).length == 1, "Your regex should find 1 digit in "9".");' - text: Seu regex deve encontrar dois dígitos em "Catch 22" . testString: 'assert("Catch 22".match(numRegex).length == 2, "Your regex should find 2 digits in "Catch 22".");' - text: Seu regex deve encontrar 3 dígitos em "101 Dalmatians" . testString: 'assert("101 Dalmatians".match(numRegex).length == 3, "Your regex should find 3 digits in "101 Dalmatians".");' - text: 'Seu regex não deve encontrar dígitos em "One, Two, Three" .' testString: 'assert("One, Two, Three".match(numRegex) == null, "Your regex should find no digits in "One, Two, Three".");' - text: Seu regex deve encontrar 2 dígitos em "21 Jump Street" . testString: 'assert("21 Jump Street".match(numRegex).length == 2, "Your regex should find 2 digits in "21 Jump Street".");' - text: 'Seu regex deve encontrar 4 dígitos em "2001: A Space Odyssey" .' testString: 'assert("2001: A Space Odyssey".match(numRegex).length == 4, "Your regex should find 4 digits in "2001: A Space Odyssey".");' ```
## Challenge Seed
```js let numString = "Your sandwich will be $5.00"; let numRegex = /change/; // Change this line let result = numString.match(numRegex).length; ```
## Solution
```js // solution required ```