我有一个想与Tkinter GUI一起使用的网络抓取脚本。 该脚本基本上是在搜索日期范围和文件编号,因此GUI带有“输入”框,用户可以输入所需的编号。
E.G搜索的字符串是:
feaiuf1939145lkj.1998.foiu0233p3jp.8.3.203f902jall
asdfawefp892u3fp98qp9k.2000.f09389apfa.3.6.983w4pfajsdflkj
afjkwaflfkje.2008.f3ojsdlkjfaof33423.4.5.asodfj
我的简化脚本是:
extracted_numbers = re.compile(r'.*\.(\d{4})\..*\.(\d\.\d)\..*')
print extracted_numbers.group(1)
print extracted_numbers.group(2)
所以在Tkinter,我已经分配了
datebox = StringVar()
filebox = StringVar()
如何将它们放入re.compile搜索字符串中?