标签: php regex
我需要创建一个正则表达式,用于选择两个字符(& - @)之间的数据。
& foo @
我想选择 foo 。
有什么想法吗?很好的解释也很受欢迎。
答案 0 :(得分:3)
怎么样:
preg_match('~&([^@]*)@~',$content,$match);