Search for a regular expression extension

I am looking for a Regular Expression library that I can use in our application, which is written in PowerBuilder (PB has a RegEx function, but it is too limited for my needs). Required Features:

  • : COM or exported functions (cannot use exported classes)
  • Unicode
  • Free
  • Finished products

Any suggestions where I can find such a tool?

Thanks Eran

+3
source share
2 answers

This custom (and latest) PowerBuilder library can help: PBNI PbniRegex Extension

+5
source

You can also use the VBScript.RegExp OLE object.

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

RegExp. . http://msdn.microsoft.com/en-us/library/ms974570.aspx

+1

Source: https://habr.com/ru/post/1702364/


All Articles