Re: [PHP] minus in [] groups in ereg

2001-09-13 Thread Alexander Skwar
So sprach »Andrew Perevodchik« am 2001-09-13 um 18:32:03 +0300 : > Is this a bug or feature? The only way to include Feature. See the manual or maybe perldoc perlre. You don't need to escape it, if you put it as the very first item, like so: [-A-Z0-9] Also, why are you escaping =, %, . and _

RE: Re[2]: [PHP] minus in [] groups in ereg

2001-09-13 Thread Johnson, Kirk
> JK> Feature. By placing a "dash" next to the > JK> bracket, there is no confusion that the dash > JK> is being used to specify a range. > > Doesn't slash before dash mean that??? Could be, I don't know. I always put a dash next to the bracket, instead of escaping it with a backslash. As is oft

Re[2]: [PHP] minus in [] groups in ereg

2001-09-13 Thread Andrew Perevodchik
Hello! You wrote: JK> Feature. By placing a "dash" next to the JK> bracket, there is no confusion that the dash JK> is being used to specify a range. Doesn't slash before dash mean that??? -- Andrew Perevodchik [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscri

RE: [PHP] minus in [] groups in ereg

2001-09-13 Thread Johnson, Kirk
ECTED] > Subject: [PHP] minus in [] groups in ereg > > > Is this a bug or feature? The only way to include > a minus characher in [] groups in regex is to put > \- right gefore ] > > [[A-Za-z0-9\_\-\=\%\.]] won't work with "-" as it is supposed to > [[A-

[PHP] minus in [] groups in ereg

2001-09-13 Thread Andrew Perevodchik
Is this a bug or feature? The only way to include a minus characher in [] groups in regex is to put \- right gefore ] [[A-Za-z0-9\_\-\=\%\.]] won't work with "-" as it is supposed to [[A-Za-z0-9\_\=\%\.\-]] is ok Uh? -- Andrew Perevodchik [EMAIL PROTECTED] -- PHP General Mailing List (http: