“Regex coincide con todo excepto” Código de respuesta

Regex coincide con todo excepto

let reg = /[^charachter_to_not_match]*/
// Example
let str = '<<1,2,3>, <4,5,6>, <7,8,9>>'
//match everything but '>'
reg = /[^>]+/g // Array(3) ["<<1,2,3", ", <4,5,6", ", <7,8,9"]
//match everything but '<' and '>'
reg = /[^<>]+/g // Array(5) ["1,2,3", ", ", "4,5,6", ", ", ...]
//match anything but '<', '>', ',' and '\s' (\s=any whitespace)
reg = /[^<>,\s]+/g // Array (9) ["1", "2", ..., "9"]
POG

Regex pero todo menos

//match everything but '>'
reg = /[^>]+/g
Difficult Dunlin

Respuestas similares a “Regex coincide con todo excepto”

Preguntas similares a “Regex coincide con todo excepto”

Más respuestas relacionadas con “Regex coincide con todo excepto” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código