“regex corresponde à string exata” Respostas de código

regex corresponde à string exata

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

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

Respostas semelhantes a “regex corresponde à string exata”

Perguntas semelhantes a “regex corresponde à string exata”

Mais respostas relacionadas para “regex corresponde à string exata” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código