
March 8th, 2002, 12:52 PM
|
|
Contributing User
|
|
Join Date: Oct 2000
Location: Back in the real world.
|
|
mmmm. this is not really the correct forum for this. "project help wanted" is for looking for programmers to hire etc i think.
your question is language specific.
most languages support regexps, so this is an answer i can give in this forum without being flamed to death i think.
...
$s=preg_replace('%.*<tr>%s','',$s);
$s=preg_replace('%</tr>.*%s','',$s);
would be one php way to do it. maybe you need to add backslashes before the "<"s and ">"s...
|