lines = []
total_check = 0
with pdfplumber.open(file) as pdf:
pages = pdf.pages
for page in pdf.pages:
text = page.extract_text()
for line in text.split('\n'):
print(line)
输出数据:
Totaalbedrag excl. btw € 25,00
当我尝试从数据中检索增值税时:
KVK_re = re.compile(r'(excl. btw .+)')
KVK_re.search(data).group(0)
输出:AttributeError:“NoneType”对象没有属性“group”
KVK_re = re.compile(r'(excl. btw .+)')
KVK_re.search(r'excl. btw € 25,00').group(0)
输出:'排除。顺便说一句 € 25,00'
当我将文字输出粘贴到搜索中时,它怎么可能找到数字 € 25,00 而当我输入数据变量时却找不到?
请帮我!
米脂
杨魅力
相关分类