“Regex exacto” Código de respuesta

Cadena exacta de Regex Match

you want to achieve a case insensitive match for the word "rocket" 
surrounded by non-alphanumeric characters. A regex that would work would be:

\W*((?i)rocket(?-i))\W*
Tomas Maillo

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 Regex

const regex = /([a-z]*)ball/g;
const str = "basketball football baseball";
let result;
while((result = regex.exec(str)) !== null) {
	console.log(result[1]); 
    // => basket
    // => foot
    // => base
}
ali ahmed

Regex exacto

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

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

Respuestas similares a “Regex exacto”

Preguntas similares a “Regex exacto”

Más respuestas relacionadas con “Regex exacto” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código