I am trying to write a regular expression in java which will validate following format-
XXXXXXXX_YZZZZ
where
X – alphanumeric characters(8 characters)
Y - alpha character
Z - numeric characters
what I have tried for first part is - ^[a-zA-Z0-9 ]*$ but I am not getting how to go for second part.
Can any one tell me what will be the correct regex for required format ?


