Guys Please help me in creating a regular expression for a string starts with four capital alpha and followed by numeric. total length should be minimum 15 and max 30
e.g.
ABCD12322323231 , ABCD12322323231343 is a valid
123ABC, ABC12321, ABCD12, ABCD-12323123123123213213213 are invalid
I were trying with
(^([A-Z]){4}){15,30}$)