I tried the following at http://gskinner.com/RegExr, there it worked perfectly.
Now I want to get the /(?<=>\r\s{23})(.*)/gi
pattern realized in PHP. The > character don't perform well, also not with backslashes...
I want to get the 2011 Oct 3, Mon
, Unity Day
and
in the mid of every <FONT></FONT>
.
Searching string:
`<TR>
<TD ALIGN=LEFT VALIGN=MIDDLE HEIGHT=17
WIDTH=175 BGCOLOR=lightblue>
<FONT COLOR=red SIZE=2>
2011 Oct 3, Mon
</FONT>
</TD>
<TD ALIGN=LEFT VALIGN=MIDDLE HEIGHT=17
WIDTH=150 BGCOLOR=lightblue>
<FONT COLOR=black SIZE=2>
Unity Day
</FONT>
</TD>
<TD ALIGN=LEFT VALIGN=MIDDLE HEIGHT=17
WIDTH=275 BGCOLOR=lightblue>
<FONT COLOR=black SIZE=2>
</FONT>
</TD>
</TR>`
Any ideas, other solutions, etc.?
Greetings Eminenz