我有一个正则表达式,它最终会有点长,它会使它更容易阅读以跨多行。
我试过这个,但它只是呕吐。
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?