I search for a regex expression that should be either:
- BILL followed by 10 digits ( the total length should be 14 )
- AAAASPA followed by 6 digits ( the total length should be 13 )
I tried this ^(BILL\d{10}){14}|(AAAASPA\d{6}){13}$
But It does not work.