I am trying to use some simple regular expressions in writing a macro for an Excel document. Here is what I have so far:

dim regex
regex.pattern = "\s+"
for p = 3 to totalparamcount
    if (regex.test(Worksheets("table").Cells(p,1)) then
        msgbox ("blah blah")
    end if
next

The pattern I am trying to match is one or more spaces, tabs, newlines, which I saw is denoted by "\s". The error I am getting is below.

The line 'if (regex.test(Worksheets("table").Cells(p,1)) then' is getting this error:

Run-time error '424':

Object required

I am currently using VBA 7.0 in Excel. Please let me know if I need to provide anything else. Thank you.

link|improve this question
might be better asked on StackOverflow – chris neilsen Oct 15 '11 at 10:24
feedback

migrated from superuser.com Oct 15 '11 at 11:06

This question came from our site for computer enthusiasts and power users.

1 Answer

up vote 1 down vote accepted

You need to create the regexp object, ie

Dim regex
Set regex = CreateObject("vbscript.regexp")
regex.Pattern = "\s+"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.