“Regex cocok dengan string yang tepat” Kode Jawaban

Regex cocok dengan string yang tepat

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 cocok

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

Jawaban yang mirip dengan “Regex cocok dengan string yang tepat”

Pertanyaan yang mirip dengan “Regex cocok dengan string yang tepat”

Lebih banyak jawaban terkait untuk “Regex cocok dengan string yang tepat” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya