“string.regex coincidente” Código de respuesta

regex.match

const paragraph = 'The quick brown fox jumps over the lazy dog. It barked.';
const regex = /[A-Z]/g;
const found = paragraph.match(regex);

console.log(found);
// expected output: Array ["T", "I"]
Gil Reich

string.regex coincidente

const str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
const regexp = /[A-E]/gi;
const matches_array = str.match(regexp);

console.log(matches_array);
// ['A', 'B', 'C', 'D', 'E', 'a', 'b', 'c', 'd', 'e']
Vast Vendace

Regex exacto

use ^ and $ to match the start and end of your string
^matchmeexactly$
Friendly Hawk

Respuestas similares a “string.regex coincidente”

Preguntas similares a “string.regex coincidente”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código