Struggling with a regex challenge - need to validate two words with a mandatory point between them. No special characters, no @ symbol, and no spaces allowed. The format should be like this:
test.test
I've been attempting to use the following regex pattern without success:
^[a-z']*.[a-z']+$
If anyone could offer some assistance, I would greatly appreciate it. I've hit a roadblock and can't seem to figure it out on my own. Thank you in advance!