![]() |
|
|
#1 |
![]() Join Date: Apr 2010
Location: Atlanta/Marietta, GA
Posts: 759 (0.67/day)
Thanks: 209
Thanked 103 Times in 90 Posts
|
Searching in PDF?
Hey guys, I need to look up a large list of data from a PDF file, basically just to check if each entry of the list is in the pdf. Is there some way to do this without having to check one by one?
|
|
|
|
|
|
#2 |
|
Senior Moderator
Join Date: Jul 2006
Location: Milwaukee, WI.
Posts: 31,930 (12.77/day)
Thanks: 2,789
Thanked 12,304 Times in 7,823 Posts
|
Ctrl + f
|
|
|
|
|
|
#3 |
![]() Join Date: Apr 2006
Location: Arizona, USA
Posts: 359 (0.14/day)
Thanks: 20
Thanked 74 Times in 66 Posts
|
That.
Or, if you need to check a bunch of text with some other advanced method, you could use the text selection tool in Adobe Reader, select the text, copy and paste it into some other application (like MS Word or Excel) that will allow you to search the way you want (with custom VBA macro code). |
|
|
|
| The Following User Says Thank You to gvblake22 For This Useful Post: |
|
|
#4 |
![]() Join Date: Jul 2010
Location: Philly
Posts: 1,599 (1.55/day)
Thanks: 1,004
Thanked 765 Times in 539 Posts
|
I'd do a slight modification on what gvblake22 said.
First I'd copy the data out of the pdf with the text selection tool. Then I'd create a copy of the data you're looking for (called myData_test.txt) and paste the data from the pdf into it. Using some basic command line tools like this (where myData.txt is the data you're looking for): Code:
sort myData_test.txt | uniq -d > matchingData.txt sort myData.txt | diff matchingData.txt -
__________________
|
|
|
|
| The Following User Says Thank You to streetfighter 2 For This Useful Post: |
|
|
#5 | |
![]() Join Date: Apr 2006
Location: Arizona, USA
Posts: 359 (0.14/day)
Thanks: 20
Thanked 74 Times in 66 Posts
|
Quote:
|
|
|
|
|
|
|
#6 | |
![]() Join Date: Jul 2010
Location: Philly
Posts: 1,599 (1.55/day)
Thanks: 1,004
Thanked 765 Times in 539 Posts
|
Quote:
__________________
|
|
|
|
|
| The Following User Says Thank You to streetfighter 2 For This Useful Post: |
|
|
#7 |
![]() Join Date: Apr 2010
Location: Atlanta/Marietta, GA
Posts: 759 (0.67/day)
Thanks: 209
Thanked 103 Times in 90 Posts
|
Thanks for the response guys! I actually ended up finding a copy of the file in excel so all's good now
|
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Searching: 3D Modeling Program | YoKid | General Software | 5 | May 10, 2009 07:53 PM |
| Searching ET clan | Laurijan | Games | 5 | Jan 14, 2008 11:34 AM |
| Searching through P.M.'s | panchoman | Comments & Feedback | 5 | Dec 19, 2007 09:39 PM |
| Keywords to Avoid when Searching | POGE | News | 4 | May 14, 2006 05:52 AM |
| monitor searching for dvi ? x1900xtx | ISSA2000 | Graphics Cards | 0 | Feb 22, 2006 01:21 PM |