in reply to Re: regex match in list context
in thread regex match in list context

shorter note:
[A-Za-z0-9_\-,.+]*
is the same as
[\w,.+-]*
except the former makes my brain work much harder.

Replies are listed 'Best First'.
Re^3: regex match in list context
by Aristotle (Chancellor) on Oct 02, 2003 at 20:55 UTC
    Be aware that the latter is affected by user's locale settings and/or Unicode encoding of strings, the former is not and always means the same thing.

    Makeshifts last the longest.