freeCodeCamp/curriculum/challenges/spanish/02-javascript-algorithms-an.../regular-expressions/match-all-non-numbers.spani...

3.1 KiB

id title challengeType videoUrl localeTitle
587d7db8367417b2b2512ba1 Match All Non-Numbers 1 Coincidir con todos los no números

Description

El último desafío mostró cómo buscar dígitos usando el método abreviado \d con una minúscula d . También puede buscar no dígitos usando un atajo similar que use una D mayúscula en su lugar. El atajo para buscar caracteres sin dígitos es \D Esto es igual a la clase de caracteres [^0-9] , que busca un solo carácter que no sea un número entre cero y nueve.

Instructions

Use la clase de caracteres abreviados para no dígitos \D para contar cuántos no dígitos hay en los títulos de las películas.

Tests

tests:
  - text: Su expresión regular debe usar el carácter de acceso directo para hacer coincidir los caracteres que no son dígitos
    testString: 'assert(/\\D/.test(noNumRegex.source), "Your regex should use the shortcut character to match non-digit characters");'
  - text: Su expresión regular debe utilizar la bandera global.
    testString: 'assert(noNumRegex.global, "Your regex should use the global flag.");'
  - text: Su expresión regular no debe encontrar caracteres que no sean dígitos en <code>&quot;9&quot;</code> .
    testString: 'assert("9".match(noNumRegex) == null, "Your regex should find no non-digits in <code>"9"</code>.");'
  - text: Su expresión regular debe encontrar 6 no dígitos en <code>&quot;Catch 22&quot;</code> .
    testString: 'assert("Catch 22".match(noNumRegex).length == 6, "Your regex should find 6 non-digits in <code>"Catch 22"</code>.");'
  - text: Su expresión regular debe encontrar 11 no dígitos en <code>&quot;101 Dalmatians&quot;</code> .
    testString: 'assert("101 Dalmatians".match(noNumRegex).length == 11, "Your regex should find 11 non-digits in <code>"101 Dalmatians"</code>.");'
  - text: 'Su expresión regular debe encontrar 15 no dígitos en <code>&quot;One, Two, Three&quot;</code> .'
    testString: 'assert("One, Two, Three".match(noNumRegex).length == 15, "Your regex should find 15 non-digits in <code>"One, Two, Three"</code>.");'
  - text: Su expresión regular debe encontrar 12 no dígitos en <code>&quot;21 Jump Street&quot;</code> .
    testString: 'assert("21 Jump Street".match(noNumRegex).length == 12, "Your regex should find 12 non-digits in <code>"21 Jump Street"</code>.");'
  - text: 'Su expresión regular debe encontrar 17 dígitos no en <code>&quot;2001: A Space Odyssey&quot;</code> .'
    testString: 'assert("2001: A Space Odyssey".match(noNumRegex).length == 17, "Your regex should find 17 non-digits in <code>"2001: A Space Odyssey"</code>.");'

Challenge Seed

let numString = "Your sandwich will be $5.00";
let noNumRegex = /change/; // Change this line
let result = numString.match(noNumRegex).length;

Solution

// solution required