“regex correspond à la chaîne exacte” Réponses codées

regex correspond à la chaîne exacte

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

match exact regex

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

Réponses similaires à “regex correspond à la chaîne exacte”

Questions similaires à “regex correspond à la chaîne exacte”

Plus de réponses similaires à “regex correspond à la chaîne exacte” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code