From: Gavin K.
From: Anthony W.
Sent: Tuesday, October 24, 2006 12:35 PM
I’m trying to count and print eachand <tr ‘something’>. Do you just want to match the “
”, or do you want to match the
“… ”?Assuming the former:
row_tags = op_file.scan( /<tr[^>]+>/ )
p row_tags, row_tags.lengthEr, oops. I mean /<tr[^>]*>/ of course, to match the no-attribute row as
well.