Search found 2 matches

by vineet
Tue Oct 25, 2005 12:12 am
Forum: Regex
Topic: Regular Expression
Replies: 4
Views: 3254

Thanx Jank, But it is not working. I use this $chars = preg_split('/<td.*>/i',$mystring); It is working but problem is that it is now not trapping <td> and trapping all td's with attributes like this<td height="16" etc...>. I think problem is of "." it is saying that one characte...
by vineet
Mon Oct 24, 2005 4:58 am
Forum: Regex
Topic: Regular Expression
Replies: 4
Views: 3254

Regular Expression

Hi, Can any body help me. I am new in php.I want to trape all rows containing <td> or <td height="15" etc... td attribute >. $chars = preg_split('/<td *>/i', $mystring); print_r($chars); I am using this code but it is not extracting any thing.. How i can do this. Please Help...