Re: what does a dot "." mean in regex, when it is in brackets?
Posted by Steve on 11/03/05 16:06
> ^content/([^/]+)/([^.]+)$
> I know the "^" means "not".
> Doesn't this:
> [^.]+
> mean "not anything"????
In fact . in a regexp means any character except a newline (\n). Are
there any other switches involved that might modify the default
line-oriented behaviour?