Re: Raku regex assert doesn't match
[email protected] (Ralph Mellor)
| Newsgroups | perl.perl6.users |
|---|---|
| Message-ID | <CAPLR5SfO5RyxHiJkDKopVFj1kmHbNRJdXo4z2EznJ9MKaeqjCg@mail.gmail.com> |
On Sun, Jul 30, 2023 at 5:21 AM Darren Duncan <[email protected]> wrote: > > match this pattern initially, but > > fully declarative Do you consider `<!before [null | false | true] <wb>> .*` to be declarative? If so, what about: ``` my token nonquoted_alphanumeric_text { <[ A..Z _ a..z ]> <[ 0..9 A..Z _ a..z ]>* & <!before [null | false | true] <wb>> .* } ``` -- raiph