I need to validate an attribute value for alphanumeric i.e. VF12345, 12345VF, vc1234, 345cf, fdf455ff,
I have used ^(\d+[A-Z]|[A-Z]+\d)[A-Z\d]*$ this expression but it accepts only uppercase letters. I need an expression that can accept upper or lower both along with numbers,
Any help will be appreciated.
thanks,
Dilip
*This post is locked for comments