Skip to content

Releases: dragokas/VbPcre2

VBScript.Regexp - PCRE2 Proxy Wrapper

21 Jun 20:34
Compare
Choose a tag to compare

VBScript.Regexp - PCRE2 portable VB6 proxy wrapper

  • is portable (you can make a single EXE)
  • automatically switch from "VBScript.Regexp" to PCRE2 engine, if first one is failed (e.g. damaged VBScript.dll, or registry data).
  • easy to integrate to a big project, that already use "VBScript.Regexp".
  • doesn't require admin. privilages on user machine.

Using

  • Add cRegExp.cls
  • Add IRegexp.tlb to references
  • Add code:
Dim oRegexp as IRegExp
set oRegexp = New cRegExp
  • Use as usual VBScript.Regexp object model.