Regex Match

Check if a string matches a regular expression.

Inputs

Regex

The Regex you want to find in the string.

Example: ^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$

Source

String

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

Outputs

Match

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)