|
Posted by robert on 09/28/52 11:48
"Rich" <rich@newsguy.com> wrote in message
news:e5274n042f@drn.newsguy.com...
| On Wed, 24 May 2006 03:48:14 GMT, Neeper wrote...
| >
| >I've got this pattern that I am using but how would I incorporate
| >allowance of dashes(-)?
| >
| >$mixedPattern = '[^A-Za-z0-9\.\,\'\#[:space:]]';
| >
| >
| >TIA
|
| If it's similar to the regex in Perl, I believe you put the dash last in
the
| group so that is isn't interpreted as a special characters (such as the
A-Z
| range).
|
| Rich
somewhat true...it only needs to be escaped in a character class...i.e.
[^\-] ... otherwise, it's just plain ol' -
;^)
Navigation:
[Reply to this message]
|