I need to validate that a string is of the following format/sequence
LGaaaaaaaaaaYYMMDDnnnnn
For the string to be valid, it has to start with the characters "LG" followed by 10 characters followed by a date in the format (YYMMDD) following by 5 digits.
Here is what i have come up with
String patter = ^LG{1}[a-z][A-Z]{10}[0-9]{6}[0-9]{5}
- How can i check that the string does start with "LG"
- How do i check that ten characters after "LG" are indeed after the characters "LG"
- How do i check that YYMMDD is a valid date
- How can i check that the digits at the end of the string are exactly 5 digits.
-- I could use Simpledateformat to validate the string as a date i think.
Thanks