On Nov 17, 2010, at 2:11 PM, Michael Wiik wrote: > I have a bunch of html rows I want to remove, all similar to: > > <tr class="percents"> > <th>Percent</th> > <td class="year_1"></td> > <td class="year_2"></td> > <td class="year_3"></td> > <td class="year_4"></td> > <td class="year_5"></td> > <td class="total">--</td> > </tr> > > Tried a grep find (case sensitive, grep, wrap around) using: > > <tr class=\"percents\">.*?</tr> > > and this does not return any results.
Try (?s)<tr class=\"percents\">.*?</tr> to match newlines. Greg -- You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at <http://groups.google.com/group/bbedit?hl=en> If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>
