Title here
Summary here
Check if a string matches a regular expression.
The Regex you want to find in the string.
Example: ^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$
The string you want to find Regex in.
Example: These are example emails: email@example.com, another-email@example.com, and yet-another-email@example.com
Whether or not the Regex perfectly matches the string.
Example: false
or true
(in the example, false
as, while it contains the Regex, is does not exactly equal it)