On Nov 17, 8:41 pm, Ken Rachynski <[email protected]> wrote: > Not sure what you're intending with that .*? structure [...]:
It makes the .* pattern non-greedy. Without the non-greedy modifier, the pattern would match the entire text below. With non-greedy matching turned on, it will limit the match to the first <tr>...</tr>- pair. <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> <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> Best regards, Helge -- 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>
