I\'d like to return string between two characters, @ and dot (.).
I tried to use regex but cannot find it working.
(@(.*?).)
Anybod
Try this regular expression:
@([^.]*)\.
The expression [^.]* will match any number of any character other than the dot. And the plain dot needs to be escaped as it’s a special character.
[^.]*