I need a regex that will only find matches where the entire string matches my query.
For instance if I do a search for movies with the name \"Red October\" I only wa
Try the following regular expression:
^Red October$
By default, regular expressions are case sensitive. The ^ marks the start of the matching text and $ the end.
^
$