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"
);