The regex component that (normally) doesn’t include line endings (eol) is the dot ‘.’, which stands for any character EXCEPT eol characters. You could also use the ‘$’ which (normally) stands for the end of the line; it would go at the end of the expression you have.
HTH _bruce__van_allen__santa_cruz_ca_ _831_429_1688_p_ _831_332_3649_c_ > On Mar 1, 2022, at 1:32 PM, @lbutlr <[email protected]> wrote: > > I am using the following pattern: > > ^,,([^ ]+) ([^,@]+), > > And it is matching across the EOL markers. I though the default was for > pattern not to do that unless specifically told to? > > It is the [^ ]+ that seems to do it. > > What I am trying to match is a ",,word word," and not match ",,word,word" > > -- > You came in that thing? You're braver than I thought! > > -- > This is the BBEdit Talk public discussion group. If you have a feature > request or need technical support, please email "[email protected]" > rather than posting here. Follow @bbedit on Twitter: > <https://twitter.com/bbedit> > --- > You received this message because you are subscribed to the Google Groups > "BBEdit Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/bbedit/13F5CDD9-4D42-41D2-8713-2E2CFD25F675%40kreme.com. -- This is the BBEdit Talk public discussion group. If you have a feature request or need technical support, please email "[email protected]" rather than posting here. Follow @bbedit on Twitter: <https://twitter.com/bbedit> --- You received this message because you are subscribed to the Google Groups "BBEdit Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/bbedit/5D001B94-D32C-408F-BA6F-EB5C7805AAD4%40cruzio.com.
