i need regex find matches entire string matches query.
for instance if search movies name "red october" want match on exact title (case insensitive) not match titles "the hunt red october". not quite sure know how this. know?
thanks!
try following regular expression:
^red october$
by default, regular expressions case sensitive. ^
marks start of matching text , $
end.
Comments
Post a Comment