Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想关注一个包含 $foo AND $bar 的链接。
我已经尝试过了,但它没有用。
$mech->follow_link( url_regex => qr/$foo/i && url_regex => qr/$bar/i)
您可以编写一个匹配两个子模式的正则表达式:
qr/(?=.*?$foo)(?=.*$bar)/is
由于.*前缀,这使用了两个可以匹配字符串中任何位置的前瞻。
.*
请注意,这效率较低,并且匹配的子字符串会有所不同。