読んでいるファイルがあり、ファイル全体で特定のパターンを検索しています。サンプル行は次のとおりです。
DATA "1354236384craan18p.1354236392craan18p.1354668684AR_ESCALATORCase HD0347023 was automatically closed on 5/12/2012 1:51:24 p.m.." "IT Services | File Services | Recovery"
私が欲しいのは、"IT Services | File Services | Recovery"
セクションのみを提供する正規表現を作成することです。
次の正規表現とコードがありますが、機能しません - 何かアイデアはありますか?
$whole_wk_file = file_get_contents('Work.arx');
$pattern1 = '/\"[^\"\|]+\|[^\"\|]+\|[^\"\|]+\"/';
preg_match_all($pattern1, $whole_wk_file, $matches_wk, PREG_PATTERN_ORDER);
print_r($matches_wk{0});
これもPHPです。