I use this regex for my email validation
/.+@.+\..+/i
I can't get it to work on my server side though. I tried this so far
var pattern = @"^.+@.+\..+i$";
var pattern = @".+@.+\..+i";
I get 0 results trying it (also in my code). Any ideas? Not sure if it helps but the requirement is to allow a@b.c
so 1 char, one @ and at least one '.'.