mhonarc-users

Re: Is subject-based threading actually done in conjunction with explicit threading?

1998-09-28 05:05:43
<SubjectStripCode>
s/^\AFA-L: //;
-----^
Why the backslash?  "\A" in a regex is a beginning of the string assertion.
So what you have is two assertions together: beginning of line (^) and
beginning of the string (\A).

Remove the backslash and see if that works.

It does ! Thxs, Christian