ByteScout Document Parser SDK - VBScript and VB6 - Parse Simple Document - ByteScout

ByteScout Document Parser SDK – VBScript and VB6 – Parse Simple Document

  • Home
  • /
  • Articles
  • /
  • ByteScout Document Parser SDK – VBScript and VB6 – Parse Simple Document

How to parse simple document in VBScript and VB6 using ByteScout Document Parser SDK

How to parse simple document in VBScript and VB6

Learn how to parse simple document in VBScript and VB6 with this source code sample. ByteScout Document Parser SDK is the customizable data extraction platform for batch data extraction from documents. Relies on special templates that can be created with no special technical skills required. Supports millions of documents as input and designed to handle multiple threads. Can output data as JSON, CSV, XML or custom format. It can parse simple document in VBScript and VB6.

This rich sample source code in VBScript and VB6 for ByteScout Document Parser SDK includes the number of functions and options you should do calling the API to parse simple document. Follow the instructions from the scratch to work and copy the VBScript and VB6 code. Further enhancement of the code will make it more vigorous.

You can download free trial version of ByteScout Document Parser SDK from our website to see and try many others source code samples for VBScript and VB6.

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

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

GeneralExample.vbs
      
' This example demonstrates document data parsing to JSON and YAML formats. templatesFolder = "..\..\_Sample Templates" inputDocument1 = "..\..\DigitalOcean.pdf" inputDocument2 = "..\..\AmazonAWS.pdf" ' Create DocumentParser object Set documentParser = CreateObject("Bytescout.DocumentParser.DocumentParser") documentParser.RegistrationName = "demo" documentParser.RegistrationKey = "demo" ' Loading templates... documentParser.AddTemplates(templatesFolder) ' Parse document data in JSON format documentParser.ParseDocument inputDocument1, "output1.json", 0 ' 0 = OutputFormat.JSON ' Parse document data in YAML format documentParser.ParseDocument inputDocument2, "output2.yaml", 1 ' 1 = OutputFormat.YAML WScript.Echo "Parsed data saved as 'output1.json' and 'output2.yaml'." 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