繁体   English   中英

如何匹配 php 正则表达式中字符串上的所有 @__('...')?

[英]How to match all @__('...') on string in php regex?

我有以下字符串,需要匹配字符串中的所有@__('...')@__("...")

        $string = <<<EOD
@__('test1') @__('test2 (foo)') @__('test\'3') @__("test4")
@__('test5')
EOD;

预期的:

test1
test2 (foo)
test\'3
test4
test5

尝试了一些模式:

这种模式只有在一行只有一个目标字符串时才能匹配:

preg_match_all("/@__\([\'\"](.+)[\'\"]\)/", $string, $matches);
    
dd($matches);
    
array:2 [▼
    0 => "test1') @__('test2 (foo)') @__('test\'3') @__("test4"
    1 => "test5"
]

下面的不能匹配包含)的字符串:

preg_match_all("/@__\(['|\"]([^\'][^\)]+)['|\"]\)/", $string, $matches);

dd($matches);

array:4 [▼
    0 => "test1"
    1 => "test\'3"
    2 => "test4"
    3 => "test5"
]

提前致谢。

我找到了解决方案,只需添加? .+之后:

preg_match_all("/@__\([\'\"](.+?)[\'\"]\)/", $string, $matches);

谢谢巴尔玛

使用非贪婪量词,以便获得最短匹配,而不是最长匹配。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM