时间:2021-07-01 10:21:17 帮助过:6人阅读
preg_match("/^@\w+(#|:| ){1}$/", "content=#作曲家#看那你面的罢了:stuck_out_tongue_closed_eyes:@000000a ", $matches, PREG_OFFSET_CAPTURE);
我想匹配"@000000a",但结果不正确,希望懂的人可以指点一下,非常感谢!
content中的内容出现的顺序是随机的。
preg_match("/^@\w+(#|:| ){1}$/", "content=#作曲家#看那你面的罢了:stuck_out_tongue_closed_eyes:@000000a ", $matches, PREG_OFFSET_CAPTURE);
我想匹配"@000000a",但结果不正确,希望懂的人可以指点一下,非常感谢!
content中的内容出现的顺序是随机的。
pregmatch(“/@(\w+)/”)
preg_match("/@([0-9]+[A-Za-z]+)(#|:| )+$/", "content=#作曲家#看那你面的罢了:stuck_out_tongue_closed_eyes:@000000a#", $matches);
echo "";
print_r($matches);
echo "
";
/@\d+\w+/ 或者 /@[0-9]+[a-zA-Z]+/