正則在小偷程式中的應用 續

2021-05-28 05:07:16 字數 664 閱讀 1802

//獲取資源資訊

$content = file_get_contents("".time());

/*對抓取的資訊進行處理。取class為listtable的表資訊。[^<>]匹配除<>外的所有字元。*?用的是懶惰限定符,代表重複任意次,但盡量少重複。即匹配最短的以]*? class=\\\"listtable\\\">(.*?)<\/table>/s",$content,$out);

/*抓取tbody的內容,重複一次或多次*/

preg_match_all("/(.+?)<\/tbody>/s",$out[1],$outdata);

if(empty($outdata[1]))elseelse

$out_arr[$i]['company']=$name[1][1];

continue;break;

case 3:

$out_arr[$i]['city']=trim($em);

continue;break;

case 4:

$out_arr[$i]['price']=trim(strip_tags($em));

continue;break;}}

} else

continue;}}

print_r($out_arr);

正則在sed和grep中的應用

功能 查詢出下面文字中每個包的個數 mobilenumber is 139 73 sms content is 您好,您已成功預定樂包1個,榮包2個,至包1個,回執碼 27277d4c3,請憑此簡訊至當地經銷商門店憑碼購買 指令碼 cat logs awk sed s 預定 回執碼.1 grep o...

黎克特制替換原則在現實中的應用

我記得在之前xx大型的網際網路公司,該公司只能算是很偽的網際網路公司,以業務為主,非技術指導的公司,所以裡面的寫業務的人員水平也是參差不齊,在不停地重構,沒過多久又會發現 的維護難度在增加,然後又是重構,出現了惡性迴圈。每次來了新需求,都會頭疼得緊,擔心需求的改變會對上乙個版本有很大的衝擊。今天來介...

排序規則在拼音處理中的應用 sql

1.按拼音排序 declare t table col varchar 2 insert t select 中 union all select 國 union all select 人 select from t order by col collate chinese prc cs as ks ...