What does the following Regex expression do?
Posted
by Jim
on Stack Overflow
See other posts from Stack Overflow
or by Jim
Published on 2010-06-12T03:21:47Z
Indexed on
2010/06/12
3:32 UTC
Read the original article
Hit count: 293
regex
Hi,
I would like to understand what the following code is doing. This logic is part of a routine to strip out html from the body of an email message.
mBBSREgEx.IgnoreCase = True
mBBSREgEx.Global = True
mBBSREgEx.Pattern = "<[^>]*>"
sResult = mBBSREgEx.Replace(sResult, "")
Thank you, Jim
© Stack Overflow or respective owner