Is there a regular expression dll or library that I can use for a language that does not have one?

1.6k Views Asked by At

I program in Visual DataFlex. Are there any libraries that I can use to give my programs regular expression matching? It could be ActiveX, or COM, or maybe even just a DLL.

2

There are 2 best solutions below

0
MaxiWheat On BEST ANSWER

I know that in some languages you can invoke something like CreateObject in VB. I think it is a COM object. So something like :

Dim re

Set re = CreateObject("VBScript.RegExp")

Doc for VBScript Regular Expressions

0
Jonathan Feinberg On

MaxiWheat's answer is probably what you want, but you could also do what the pros do, and use the PCRE library.