这是我的代码:
#!/usr/bin/python
import io
import re
f = open('/etc/ssh/sshd_config','r')
strings = re.search(r'.*IgnoreR.*', f.read())
print(strings)
这会返回数据,但我需要特定的正则表达式匹配:例如:
^\s*[^#]*IgnoreRhosts\s+yes
如果我将代码更改为:
strings = re.search(r'^IgnoreR.*', f.read())
甚至
strings = re.search(r'^.*IgnoreR.*', f.read())
我什么也拿不回来。我需要能够在 perl 中使用真正的正则表达式