Something like that should work: ^[0-9]{3}[a-zA-Z]$
You put {2}
for numbers but in your case there are 3 of them so I wrote {3}
instead.
You don't need to write {1}
because [a-zA-Z]
is enough to find exacly one letter.
I also added endline tag $
to ensure that there are no more symbols after letter.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…