That's what I use to capture other table cells and it works great except this one has the ( character in the description "(REO)" and I think that's what is throwing me off.
pickle wrote:"(" & ")" are special characters, you'll need to escape them with "\".
Your pattern is overly complex though. This works for me: /top>(.*)</
Well, I tried escaping them with \ and that didn't work either for some reason. And as far as it being overly complex, it has to be because there are literally 200+ fields in this table and they almost all have the valign="top" part at the end. I definitely need to use "Foreclosed (REO)" somewhere in the expression.
pickle wrote:"(" & ")" are special characters, you'll need to escape them with "\".
Your pattern is overly complex though. This works for me: /top>(.*)</
Well, I tried escaping them with \ and that didn't work either for some reason. And as far as it being overly complex, it has to be because there are literally 200+ fields in this table and they almost all have the valign="top" part at the end. I definitely need to use "Foreclosed (REO)" somewhere in the expression.
Thanks though.
Try posting the actual data you're testing your regex against, and also post the regex you're using of course.
Just saying "it didn't work either" isn't nowhere near specific enough for others to be able to help you.