这是python中的代码,我不懂re.compile函数..任何人都可以帮我解决这个常规表达式语法吗?
file = open("C:\Users\Suleiman JK\Desktop\hello-world-reverse-uri.pdf")
data = file.read()
rxcountpages = re.compile(r"$\s*/Type\s*/Page[/\s]", re.MULTILINE|re.DOTALL)
print rxcountpages.findall(data)
答案 0 :(得分:-2)
这里的Python代码尝试open
一个文件然后read
内存中文件的内容(进入data
变量),然后它应用regular expression
得到页数,最后打印出来。你究竟在这里不明白的是什么?在发布问题之前精确定位您的确切问题并进行更多搜索会对您有所帮助。