我无法弄清楚如何通过我通过 Python 发出的 grep 命令来匹配此模式。
我想以以下形式匹配一个字符串
foo.bar([anything including newlines, spaces, tabs])
.
我正在尝试:
regex = " foo.bar(.*) "
bashCommand = "grep"+" -r -h"+regex+baseDir
process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE)
requires = process.communicate()[0]
但我无法匹配这个字符串
dojo.require("abc.def"
);