Set a reference to Microsoft VBScript Regular Expressions(vbscript.dll)

  • Thread starter Thread starter cate
  • Start date Start date
In vba, how do you do that?
Thank you.

Sorry, I had no idea how simple it was. Tools->References->[x]
Microsoft VBScript Regular Expression 5.5
 
Its about halfway down
Microsoft VBScript Regular Expressions 5.5
 
That's one way to do it... you can also do it through code.

Dim RegExp As Object
.......
.......
Set RegExp = CreateObject("vbscript.regexp")

--
Rick (MVP - Excel)


In vba, how do you do that?
Thank you.

Sorry, I had no idea how simple it was. Tools->References->[x]
Microsoft VBScript Regular Expression 5.5
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top