So I have found this regex:
(?<=^|(?<=[^a-zA-Z0-9-_\.]))@([A-Za-z]+[A-Za-z0-9-_]+)
from this question: regex for Twitter username
But this ignores the actual "@" in the handle when returning. I've tried to edit this to include @ without success. I want to return "@username" instead of "username". How do I edit this regex to include "@"?