“Match String.Regex” Respostas de código

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

Match String.Regex

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 correspondência exata

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

Respostas semelhantes a “Match String.Regex”

Perguntas semelhantes a “Match String.Regex”

Procure respostas de código populares por idioma

Procurar outros idiomas de código