gpt4 book ai didi

php - 将注释的多行(自由空间)正则表达式传递给 preg_match

转载 作者:行者123 更新时间:2023-12-02 06:26:20 27 4
gpt4 key购买 nike

我有一个正则表达式,它最终会变得有点长,但将它跨多行阅读起来会容易得多。

我试过了,但它只是呕吐。

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?

最佳答案

您可以使用扩展语法:

preg_match("/
test
/x", $foo, $bar);

关于php - 将注释的多行(自由空间)正则表达式传递给 preg_match,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22552/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com