Hi Everyone,
I'm trying to get this regular expression figured out, if anyone has any ideas i'd really appreciate it. I'm looking to capture the '81' in a variable. When I run the program it doesn't pick up anything. Any ideas?
<?php
$test1 ="<td><font face=verdana,sans-serif size=2 color=E8E8E8> 81</td>";
eregi("E8> [1-9][0-9]*</td>", $test1, $numarray);
print $numarray[0];
print $numarray[1];
print $numarray[2];
print $numarray[3];
?>
Thanks,
Joe