yeah, the regexp support is not so great - i am working on improving it.
it's best to simply look at the parser, which is at
http://code.google.com/p/lepl/source/browse/src/lepl/regexp/str.py#150
in particular, it doesn't support named groups - look at the definition of
"open" - which means that you probably want (and mean) '"(?:\\\\.|[^"\\\\])*"'
(note that i've swapped the final * and " because i think you had a mistake
there? i also removed some spaces i didn't understand)
anyway, i don't have lepl handy at the moment, but i suspect the use of (?: )
is the source of your problems.
cheers,
andrew
ps are you using lepl 5.0? looking at the source i linked to, you should have
seen a more informative error emssage that describes exactly this.
> --
> You received this message because you are subscribed to the Google Groups "lepl" group.
> To post to this group, send email to le...@googlegroups.com.
> To unsubscribe from this group, send email to lepl+uns...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/lepl?hl=en.
>
andrew