少し長くなる正規表現があり、複数行にまたがると読みやすくなります。
私はこれを試しましたが、それはただのバーフです。
preg_match(
'^J[0-9]{7}:\s+
(.*?) #Extract the Transaction Start Date msg
\s+J[0-9]{7}:\s+Project\sname:\s+
(.*?) #Extract the Project Name
\s+J[0-9]{7}:\s+Job\sname:\s+
(.*?) #Extract the Job Name
\s+J[0-9]{7}:\s+',
$this->getResultVar('FullMessage'),
$atmp
);
上記の形式の正規表現を preg_match に渡す方法はありますか?