**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
我尝试使用perl将grep输出存储到变量中,但没有成功。
my $out = `grep -oP "Name = \K(.*)" $file)`;
1条答案
按热度按时间dced5bon1#
错误:
)
末尾有一个多余的括号use strict; use warnings;
您应该已经看到错误:Unrecognized escape \K passed through
输入文件:
代码:
最后:
或者更像英国人的方式