The [0-9] expression is used to find any character between the brackets.
Use the [^0-9] expression to find any character that is NOT a digit.
[aeiou] matches any one of the charachers within the the square bracket.
[a-zA-Z] matches any uppercase or lowercase letters.
^ matches the beginning of the input string,
{4} means the number of characters to display