基本上我想要一个Python脚本在openssl/bio.h
中搜索包含
.txt
" #1111. "
< =来自1111
的任何数字,因此任何0-9
个0-9
数字的可能性,包括4
在开头,#
在结尾。
答案 0 :(得分:3)
您想要使用名为Regular Expression的内容。
Python有一个名为re
的正则表达式模块。
import re
with open('file.txt', 'r') as f:
matches = [line for line in f if re.search(r'#\d{4}\.', line)]
print matches