询问一个正则:如何获取一个字符串中多个符合正则的片段

WBOY
Release: 2016-06-23 14:06:12
Original
840 people have browsed it

如题

举例说明:有一个字符串  啊实打实的萨菲@阿萨德 @非官方个 撒的发生的发的@风风光光 打发士大夫@abc

匹配以@开头以空格或者结尾为结尾的片段, 希望能得到 @阿萨德 @非官方个 @风风光光 @abc这四个结果(应该是在一个数组里吧)

这样的正则该如何写?


回复讨论(解决方案)

$s='啊实打实的萨菲@阿萨德 @非官方个 撒的发生的发的@风风光光 打发士大夫@abc';preg_match_all('/@.+(\s|$)/U',$s,$m);print_r($m[0]);
Copy after login

多谢....

就是preg_match_all()...........我拿preg_match()纠结了半天  

为什么就不看手册呢

PHP code?123$s='啊实打实的萨菲@阿萨德 @非官方个 撒的发生的发的@风风光光 打发士大夫@abc';preg_match_all('/@.+(\s|$)/U',$s,$m);print_r($m[0]);

preg_replace()有preg_replace_all()版本吗? 想把这些都替换成链接可以吗?

preg_replace() 本来就可以替换多次,你说的那个函数没有。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template