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
You need to enclose your regex in ^ (start of string) and $ (end of string):
^
$
^Red October$