IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 查找文件夹内文件中,含有特定词语的页 -> 正文阅读

[Python知识库]查找文件夹内文件中,含有特定词语的页

使用语言:python(不得不说代码写起来是方便了,可是跑起来效率十分感人。)

调用库:pdfFilePages对pdf文件进行处理,将pdf文件中的内容提取出来。然后使用正则表达式匹配文件中的汉字,输出存在该汉字的文件名和页码。

# -*- coding: utf-8 -*-
import pdfplumber
import re
import os

from pkg_resources import WorkingSet
def getFileName(filepath): #获取文件夹下面的所有文件
    file_list = []
    for root,dirs,files in os.walk(filepath):
        for filespath in files:
            file_list.append(os.path.join(root,filespath))
    return file_list
    

def getContent(pdfFile,pdfReader,page):
    # find = re.findall('前景(.*)', pdfFile.pages[page].extract_text())
    page = pdfReader.pages[page]   # 第page页的信息
    context = page.extract_text()
    pattern1 = re.compile(r'[\u4e00-\u9fa5]+')
    context1 = pattern1.findall(context)
    context2 = "".join(context1)
    pattern2 = re.compile(u'人民币')  #把人民币换成自己要匹配的字符串
    context3 = pattern2.findall(context2)
    if context3 != []:
        print(pdfFile,page)

def getResult(fileList):
    for fileName in fileList:
        pdfFile = open(fileName, 'rb')  # 读取pdf文件
        with pdfplumber.open(pdfFile) as pdfReader:
            for page in range(len(pdfReader.pages)):
                getContent(pdfFile,pdfReader,page)


if __name__ == '__main__':
    fileFolderName = "C:\\Users\\klsxs\\Desktop\\pdf测试文件" #把这个地方改成自己的文件夹的名字
    fileList = getFileName(fileFolderName)
    getResult(fileList)

使用库PyPDF2,过程是一样的,只不过识别pdf文件的准确率不太行。

# -*- coding: utf-8 -*-
import pdfplumber
import PyPDF2
import re
import os

from pkg_resources import WorkingSet
def getFileName(filepath): #获取文件夹下面的所有文件
    file_list = []
    for root,dirs,files in os.walk(filepath):
        for filespath in files:
            file_list.append(os.path.join(root,filespath))
    return file_list
    

def getContent(pdfFile,pdfReader,page):
    # find = re.findall('前景(.*)', pdfFile.pages[page].extract_text())
    page = pdfReader.pages[page]   # 第page页的信息
    context = page.extract_text()
    pattern1 = re.compile(r'[\u4e00-\u9fa5]+')
    context1 = pattern1.findall(context)
    context2 = "".join(context1)
    pattern2 = re.compile(u'人民币')  #把人民币换成自己要匹配的字符串
    context3 = pattern2.findall(context2)
    if context3 != []:
        print(pdfFile,page)

def getResult(fileList):
    for fileName in fileList:
        pdfFile = open(fileName, 'rb')  # 读取pdf文件
        pdfReader = PyPDF2.PdfFileReader(pdfFile)
        pdfFilePages = pdfReader.numPages #文件的页数
        with pdfplumber.open(pdfFile) as pdfReader:
            for page in range(pdfFilePages):
                getContent(pdfFile,pdfReader,page)


if __name__ == '__main__':
    fileFolderName = "C:\\Users\\klsxs\\Desktop\\pdf测试文件" #把这个地方改成自己的文件夹的名字
    fileList = getFileName(fileFolderName)
    getResult(fileList)

最终输出的结果如下所示:

?输出出现“人民币”一词的文件名和页码。

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-03-08 22:24:55  更:2022-03-08 22:26:22 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 22:28:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码