Is there a regex DLL or library that I can use for a language that doesn't have this?

I am programming in Visual DataFlex. Are there libraries that I can use to match the regex of my programs? It could be ActiveX, or COM, or maybe even just a DLL.

+2


source to share


2 answers


I know that in some languages ​​you can call 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

+1


source


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



+1


source







All Articles