On Fri, Apr 07, 2000 at 02:18:22PM +0100, Peter Haworth wrote: > Mark Kvale wrote: > > If C<//m> is being used, the start > > and the end of string can still be matched with the anchors C<\A> and > > C<\Z>: > > You mean \z. \Z matches before a newline at the end, too The significance here is the way /m changes the behavior of ^ and $ -- \Z is correct because it always behaves as $ without /m. \z should be mentioned separately. RonaldThread Previous