On Thu, 28 Oct 2010 11:52:29 -0400, Ronald J Kimball <[email protected]> wrote: > On Thu, Oct 28, 2010 at 12:49:33AM -0700, Nick Matzke wrote: >> >> Thanks! That worked great! Would there be a way to make >> the comment symbols either "#" or "%%"? > > Try (?:#|%%) in place of [#%]
Because of the '(?x:' at the start of the expression, you probably want to escape the # sign: (?:\#:%%) or do I miss something? Maarten -- 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>
