RegEx Help
I have a string that looks like this:
<DIV id="<:HTMLContent1:>">
<P><A style="FONT: bold 13px Arial, Helvetica, sans-serif; COLOR: #000000; TEXT-DECORATION: none" href="http://192.168.1.1/e.cfm?m=<:cid:>.6.0.45" target=_blank>Free tutorials</A> <BR><SPAN style="FONT: 11px Arial, Helvetica, sans-serif; COLOR: #000000; TEXT-DECORATION: none">This month's free online tutorials cover new techniques</SPAN>.</P></DIV>
which I need to parse and make look like this:
<:HTMLContent1:>
The thing is, it could be from HTMLContent1 through HTMLContent8, so the RegEx needs to account for that.
Basically, I need to just pull the ID value of the div tag.
TIA!
