DavidSzczesniak
12/4/2017 - 12:44 PM

More specific search with regexes

A way to filter out unwanted results and look for the search term at the beginning or the end of the result.

# Matching the beginning of the searched strings
/^success/ # So, it would match "success", but not "unsuccessful"

# Matching the end of the searched strings 
/success$/ # So, it would match "unsuccess", but not "successful"

# Using both to find the specific term
/^success$/ # This would only match the exact string "success"