Trying to create a regex pattern for email address check. That will allow a dot (.) but not if there are more than one next to each other.
Should match: test.test@te
This seams more logical to me:
/[^.]([\.])[^.]/
And it's simple. The look-ahead & look-behinds are indeed useful because they don't capture values. But in this case the capture group is only around the middle dot.