PDF Extractor SDK – Page 38 – 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 - C# - Find SSN Number (with Regex) Program.cs using Bytescout.PDFExtractor; using System; namespace FindSSNNumberRegexp { 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_SSNNo.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 Email Addresses (with Regex) Program.cs using Bytescout.PDFExtractor; using System; namespace FindEmailAddressesRegexp { 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_EmailAddress.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# - .NET Core 2.0 - Parallel Processing Program.cs using System; using System.IO; using System.Threading; using Bytescout.PDFExtractor; namespace ParallelProcessing { class Program { // Limit to 4 threads in queue. // Set this value to number of your processor cores for max performance. private static readonly Semaphore ThreadLimiter = new Semaphore(4, 4); static void Main(string[] args) { // Get all PDF files in a folder string[] files = Directory.GetFiles(@"..\..\..\..\..\", "*.pdf"); [...]
ByteScout PDF Extractor SDK - C# - .NET Core 2.0 - OCR (Optical Character Recognition) Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Extract CSV and Fill Database (SQL Server) Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Data Masking Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Extract CSV and Fill Database (SQL Server) Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Data Masking Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Index Documents In Folder Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - VB.NET - Detect Lines Program.vb   Click here to get your Free Trial version of the SDK