Validating gmail

Hi, I need to validate many gmail addresses. The format would be anywordand/ornumbers “.” anyword “.” anyword +@gmail.com.
I’ve tried it with
(?: A-Za-z) + \ d * . (?: A-Za-z) + . (?: A-Za-z) + @ gmail.com
but it doesn’t work Can somebody help me?
Thanks.

I got it:
“\w+.\w+.\w+@gmail.com” in Pattern in ismatch activity.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.