--- In [email protected], "Sheri" <sheri...@...> wrote:
>
> By debugging content of regex variables at various times with the old
> and new, I figured out the difference is treatment of regex_status.
Try regexTest_090119_2.zip
You wrote
> 94b should be matching but it isn't.
> hRE.pcreMatch("abcde\85", ?"bsr_unicode")
> win.debug("94b", "expect Match", regex_status)
Won't match because should surely be
hRE.pcreMatch("abcde\x85", ?"bsr_unicode")
94c test:
> hRE.pcreMatch("abcde\85")
also has error is escape seq.