Regular Expression in PHP
Posted
by Patrick Gates
on Stack Overflow
See other posts from Stack Overflow
or by Patrick Gates
Published on 2010-06-10T04:54:46Z
Indexed on
2010/06/10
5:02 UTC
Read the original article
Hit count: 250
php
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 :)
© Stack Overflow or respective owner