hi,
can someone please help me to compose a regular expression to check an alphanumeric string is in a particular format.
First character must be a letter and the next 6 characters are numbers...eg x279833 or X279833 are both valid.
This is what i've come up with - ^[A-Za-z]{1}[0-9]{6}$
regards