Not a problem.
(?<=<div[^>]*>).*?(?=</div>)
I'll explain:
This uses a positive LookBehind and a positive LookAhead. The LookBehind and
LookAhead are non-capturing expressions, which indicate that the Match must
be preceded by or followed by a certain pattern. The Matches in the
LookBehind and LookAhead are not captured. So, only the text between them
is.
In addition, a div may have attributes, so I added an expression to the
LookBehind, indicating that the opening div tag can have any characters in
it other than the '>' character, prior to the closing '>' character.

Signature
HTH,
Kevin Spencer
Microsoft MVP
Chicken Salad Surgery
What You Seek Is What You Get.
> This may not help me, becuase the text I am parsing is code from a blog
> and likely to include formatting tags. I would want to keep all the
[quoted text clipped - 36 lines]
>> > Thanks
>> > Bryan
bryanmig@gmail.com - 18 Sep 2006 20:35 GMT
Thanks a million, Kevin
That line of code was golden!
I appreciate your time and effort very much.
Thanks again,
Bryan
http://www.staga.net
---------------------------
> Not a problem.
>
[quoted text clipped - 61 lines]
> >> > Thanks
> >> > Bryan