Could you please help me to provide a RegEx pattern to validate a string which satisfy:
- length from 4 to 10 (strictly)
- first 3 characters must be string (A-Z a-z)
- the remain characters must be number without
00as prefix, I meanABC15is passed butABC0015is not.
This problem took me so much time and I have tried so many regex patterns, but I still have no solution for it. Thank you so much.