--- In [email protected], "silvermoonwoman2001" <sheri...@...> wrote:

> Lets try it this way, it should be a bit more efficient:
> 
> "(?si)\\\\\\\\|\\\\\\$|\\\\[0-9]|\\$[LUTXYZ]?(?:\\d{1,3}|<[A-Z_1-9]{1,32}>)|\\$\\#";


The rules say up to 32 alphanumeric characters for named subpatterns. No reason 
to exclude zero, so...

Correction:

"(?si)\\\\\\\\|\\\\\\$|\\\\[0-9]|\\$[LUTXYZ]?(?:\\d{1,3}|<[A-Z_0-9]{1,32}>)|\\$\\#";

Regards.
Sheri


Reply via email to