ID: 14933 User updated by: [EMAIL PROTECTED] Old Summary: regular expression problem Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Documentation problem Operating System: Win ME PHP Version: 4.1.1 New Comment:
'Bug' withdrawn. I mixed up perl & posix? :( SORRY. Previous Comments: ------------------------------------------------------------------------ [2002-01-08 15:28:25] [EMAIL PROTECTED] The document is correct on this issue, those character types may be used. I've tested your code as: if (ereg('<T>([\da-z]{1,})', '<T>try8')) { echo 'match'; } Which, works just fine on win32 platforms, 4.1.1. You may want to ensure there is no whitespace in the string you are testing. Status -> Bogus ------------------------------------------------------------------------ [2002-01-08 15:13:08] [EMAIL PROTECTED] Documentation quote: The character types \d, \D, \s, \S, \w, and \W may also appear in a character class, and add the characters that they match to the class. So, I tried to match "<T>try8" with "<T>([\da-z]{1,})" and it won't work. vs "<T>([\da-z8]{1,})" work. !! ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=14933&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]