Re: is this behavior correct?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: is this behavior correct?
- From: steve donovan <steve.j.donovan@...>
- Date: 2011年6月13日 13:48:05 +0200
On Mon, Jun 13, 2011 at 1:26 PM, Peter Cawley <lua@corsix.org> wrote:
> at the end of the subject string. At other positions, '^' and '$' have
> no special meaning and represent themselves.
Except for ranges like [^abc], which is a character which is not 'a',
'b' or 'c'. It's good practice to use % in front of ^ and $ if they
are not considered to be 'magic'.
steve d.