我使用此正则表达式if($tmp =~ /(wot.*)\b/)
($tmp
指的是下面提到的数据)仅匹配路径\wot\maks\xxx\xxxx\xxx\xxxxxxxxx\xxxxxxxxx .06.55Z
,但我没有使用正则表达式获取下一行如上所述,我能够得到\wot\maks\xxx\xxxx\xxx\xxxxxxxxx\xxxxxxxxx
我如何才能获得整条路径
\wot\maks\xxx\xxxx\xxx\xxxxxxxxx\xxxxxxxxx
.06.55Z
06/15/2017 09:06 PM 111 ja.xml
1 File(s) 211 bytes
答案 0 :(得分:0)
将正则表达式更改为if($tmp =~ /(wot.*\n.*)\b/)
答案 1 :(得分:0)
/(wot。*)\ s \ S + \ b /为我工作。
您是否尝试过在正则表达式测试网站上测试解决方案?在尝试调整正则表达式时,我发现它很方便。
我喜欢http://regexr.com/进行测试。