Test regular expression

Test regular expression

Input
String
Regular expression (String)
Output (String)

The function of this online utility is to test regular expression.

For example, testing the string:

1
12
123
1234
12345
for the regular expression ^[0-9]{4}$ will returns:
1 = false
12 = false
123 = false
1234 = true
12345 = false
.