>> <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

Reply via email to