ByteScout Document Parser SDK - VBScript and VB6 - Extract line items from tables on multiple pages - ByteScout

ByteScout Document Parser SDK – VBScript and VB6 – Extract line items from tables on multiple pages

  • Home
  • /
  • Articles
  • /
  • ByteScout Document Parser SDK – VBScript and VB6 – Extract line items from tables on multiple pages

How to extract line items from tables on multiple pages in VBScript and VB6 with ByteScout Document Parser SDK

What is ByteScout Document Parser SDK? It is the robost offline data extraction platform for template based data extraction and processing. Supports high load with millions of documents as input. Templates can be quickly created and updated with no special technical knowledge required.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

ExtractLineItemFromTableOnMultiplePages.vbs
      
' This example demonstrates extracting line items from tables on multiple pages with two different approaches. ' See comments in the code of templates. inputDocument = "..\..\MultiPageTable.pdf" template1 = "..\..\_Sample Templates\MultiPageTable-template1.yml" template2 = "..\..\_Sample Templates\MultiPageTable-template2.yml" ' Create DocumentParser object Set documentParser = CreateObject("Bytescout.DocumentParser.DocumentParser") documentParser.RegistrationName = "demo" documentParser.RegistrationKey = "demo" ' Loading template... documentParser.AddTemplate(template1) ' Parse document data in JSON format documentParser.ParseDocument inputDocument, "result1.json", 0 Set documentParser = Nothing ' Create DocumentParser object Set documentParser = CreateObject("Bytescout.DocumentParser.DocumentParser") documentParser.RegistrationName = "demo" documentParser.RegistrationKey = "demo" ' Loading template... documentParser.AddTemplate(template2) ' Parse document data in JSON format documentParser.ParseDocument inputDocument, "result2.json", 0 WScript.Echo "Parsed data saved as 'result1.json' and 'result2.json'." Set documentParser = Nothing

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Document Parser SDK Home Page

Explore ByteScout Document Parser SDK Documentation

Explore Samples

Sign Up for ByteScout Document Parser SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Document Parser SDK Home Page

Explore ByteScout Document Parser SDK Documentation

Explore Samples

Sign Up for ByteScout Document Parser SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next