I need a regular in expression in PHP that I can plug into preg_match_all and find if an @ sign and any character number or letter follows right after that.
So if I put
@patrick hello there
it will come up true, if I put in
“I saw her @ the mall”
it will be false.
Thank you
An at sign followed by at least one letter, number, or underscore: