Hi i need a Regular Expression which is accepting only Numbers from 0-9 ,but should not contain all Zeros ,should not contain special characters , should not start with zero and with a length of exact 9 digits.
I tried this one but it is accepting special characters at last. ^[1-9][0-9]{8}
Please help me out. Thanks in advance.