Help with Regex

page.body.scan(/</tr>\n</form>\n<tr>\n(.)</tr>/mi) gets
half the results
page.body.scan(/</tr>\n<tr>\n(.
)</tr>/mi) gets the other half

I need help writing the reg ex that gets all the results.

Thanks in advance.

I got it. page.body.scan(/</tr>\n[</form>\n]<tr>\n(.)</tr
>/mi)
thanks.