Because there’s a gap when typing when there’s no ...
# prisma-whats-new
m
Because there’s a gap when typing when there’s no match
h
You add |
(?:@gmail\.com|@gm\.com)
for example
a
It's really about accepting it during typing
@huv1k in your case you need to add all permutations... 😞
^[a-zA-Z0-9_.+-]+(?:@|$)(?:g|$)(?:m|$)(?:a|$)(?:i|$)(?:l|$)(?:\.|$)(?:c|$)(?:o|$)(?:m|$)
m
@agartha why is
[a-zA-Z0-9_.+-]
better than
[\w\d]
?
a
See http://emailregex.com/ for the long explanation
[\w\d]
doesn't include
.
,
+
and
-
m
thanks