基本上我使用bash shell脚本cat new | sed '/1. /,/<div/!d' > new2
从1. 
开始提取文本,并在第一次出现<div
时结束。然后将其保存到new2文件中。如何使用pcre在php中完成相同的工作。
答案 0 :(得分:1)
$text = file_get_contents('php://stdin');
$matches = array();
if(preg_match('/1\. (.*?)<div/', $text, $matches)) {
echo $matches[1];
}
测试:
echo 'abc 1. This is a test<div>more stuff<div>and more' | php test.php
;This is a test