i am new to regex. i would like to ask what would be the right combination for this html tag:\[code\] <tr class="calendar_row" data-eventid="39654"> <td class="alt1 eventDate smallfont" align="center"/></td> <td class="alt1 smallfont" align="center">3:34am</td> <td class="alt1 smallfont" align="center">CNY</td> </tr>\[/code\]I am using this:\[code\] $html = website html from a url $match = array(); $pattern = "/(<tr.*?\data-eventid\>.*?<\/tr>)/ims"; preg_match_all($pattern, $html, $match);\[/code\]But it's not working :|I just want to select all the content of that tr element..Best Regards.