I am trying to check the entered String is alphanumeric or not.I tried some regular expressions i.e.,
^[a-zA-Z0-9]+$
^[A-Za-z0-9]*$
^[\pL\pN]+$
But all these will work if the String contains only numeric or contains only alphabets or alphanumeric. But I need to check the String should be AlphaNumeric and Starts with a digit only. Please help me out.