3

I'm looking for a Regular Expression library I can use in our application, which is written in PowerBuilder (PB has some RegEx functionality, but it's too limited for my needs). Required characteristics are:

  • interface: COM or exported functions (can't use exported classes)
  • Unicode
  • Free
  • Production ready

Any suggestions where can I find such a tool?

Thanks, Eran

Eran
  • 21,632
  • 6
  • 56
  • 89

2 Answers2

5

This custom (and recent) PowerBuilder library might help: Extension PBNI PbniRegex

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
1

You can also use VBScript.RegExp OLE object.

OLEObject l_ole
l_ole = CREATE OLEObject
l_ole.ConnectToNewObject("VBScript.RegExp")

Now you can use RegExp methods. For more information see http://msdn.microsoft.com/en-us/library/ms974570.aspx

4ir4o
  • 37
  • 1
  • 10