Regex help

Hi,

I’m trying to develop a regex pattern to search a string. The string is like ‘Aravind.Induchudan’.

Whatever before dot can be 3 to 7 characters and whatever after dot can be also 3 to 7 characters.

The regex pattern is ‘[A-Z]{3,10}.[A-Z]{3,10}’.

The next rule the total length should be 10-18 characters. How to do this. Any help is appreciated.

Scroll to Top