I have this: [0-9a-z]
which matches a character that's a number or lowercase letter. If I wanted to match all alphanumerics I could do: [0-9a-zA-Z]
, but I am simply wondering if there is shorthand to match all alphanumerics?
I have this: [0-9a-z]
which matches a character that's a number or lowercase letter. If I wanted to match all alphanumerics I could do: [0-9a-zA-Z]
, but I am simply wondering if there is shorthand to match all alphanumerics?