How can I check if a string contains only numbers and alphabets ie. is alphanumeric?
In order to be unicode compatible:
^[\pL\pN]+$
where
\pL stands for any letter \pN stands for any number