PDF Extractor SDK – Page 37 – ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

PDF Extractor SDK

  • Home
  • /
  • PDF Extractor SDK
ByteScout PDF Extractor SDK - VB6 - PDF To JSON Form1.frm   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB6 - PDF To CSV Form1.frm   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Check If OCR Is Required Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Check If OCR Is Required Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Find US Address (with Regex) Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Find SSN Number (with Regex) Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Find Phone Number (with Regex) Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Find Email Addresses (with Regex) Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Find US Address (with Regex) Program.cs using Bytescout.PDFExtractor; using System; namespace FindUsAddressRegex { class Program { static void Main(string[] args) { try { // Create Bytescout.PDFExtractor.TextExtractor instance using (TextExtractor extractor = new TextExtractor()) { extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; // Load sample PDF document extractor.LoadDocumentFromFile("samplePDF_Address.pdf"); extractor.RegexSearch = true; // Enable the regular expressions int pageCount = extractor.GetPageCount(); // Search through pages for (int i = 0; i [...]
ByteScout PDF Extractor SDK - C# - Find Phone Number (with Regex) Program.cs using Bytescout.PDFExtractor; using System; namespace FindPhoneNumberRegex { class Program { static void Main(string[] args) { try { // Create Bytescout.PDFExtractor.TextExtractor instance using (TextExtractor extractor = new TextExtractor()) { extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; // Load sample PDF document extractor.LoadDocumentFromFile("samplePDF_PhoneNo.pdf"); extractor.RegexSearch = true; // Enable the regular expressions int pageCount = extractor.GetPageCount(); // Search through pages for (int i = 0; i [...]