这段正则如何提取呀

WBOY
Release: 2016-06-13 13:33:15
Original
715 people have browsed it

这段正则怎么提取呀?
字符串:

Assembly code
aaaaaaaaaaaaaaaaaaaaaaa ooooooooooooooooooooooo Status: x1 Status: x23745 Status: x3242 Status: x4 bbbbbbbbbbbbbbbbbbbbbbbb cccccccccccccccccccccccc
Copy after login


现在要提取 Status:后面的字符

Status这行数量也不固定,有时一行,有时四行


我现在这样只能取到第一行的值

preg_match_all('#Status:(.*)Status:#isU', $str, $arr);
echo $arr[1][0];

第二行就不知道怎么办了

------解决方案--------------------
PHP code
------解决方案--------------------
preg_match_all('#Status:(.*)\n#isU', $str, $arr);
print_r($arr[1]);
------解决方案--------------------
preg_match_all('#Status:(.*)#mi', $str, $arr);
print_r( $arr[1]);



Array
(
[0] => x1
[1] => x23745
[2] => x3242
[3] => x4
)

------解决方案--------------------
/^Status:\s*(\S*)\s*$/im
Copy after login
Related labels:
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!