Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

search for a word in pdf using python

import PyPDF2
import re

# Open the pdf file
object = PyPDF2.PdfFileReader(r"C:TEST.pdf")

# Get number of pages
NumPages = object.getNumPages()

# Enter code here
String = "Enter_the_text_to_Search_here"

# Extract text and do the search
for i in range(0, NumPages):
    PageObj = object.getPage(i)
    Text = PageObj.extractText()
    if re.search(String,Text):
         print("Pattern Found on Page: " + str(i))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #search #word #pdf #python
ADD COMMENT
Topic
Name
7+7 =