This example attempts to match the regex [0-9].[0-9] to several strings. This regex will match any digit followed by any character followed by any digit. So in the example strings below, it matches everything except the last string since the last string does not consist of 3 characters.


NOTE: to replay, right click and select Play