|
Posted by b007uk on 07/12/06 12:28
Hi everyone,
Could someone please help me with this regular expression,
this is the string:
<top cellpadding=2 ><tr><td valign=top><b>DVD</b> duel:
<b>High</b>-<b>definition</b> showdown<br><font size=-1><font
color=6f6f6f>TMCn vxcv etrwerwerwer <br> sdfsd <b> dfasdasd <br>
asdasda
I need to match everything from <td valign=top> to the first <br>, like
this:
<td valign=top><b>DVD</b> duel: <b>High</b>-<b>definition</b>
showdown<br>
These are the expressions i tried:
<td valign=top>.*<br>
<td valign=top>.*<br>{0,1}
<td valign=top>.*<br>{1,1}
They all match everything untill the LAST break, and i only need first
occurrence of break <br>
:(
Thank you very much!
Navigation:
[Reply to this message]
|