From: [EMAIL PROTECTED]
Operating system: WIN2K
PHP version: 4.0.5
PHP Bug Type: *Regular Expressions
Bug description: ereg doesn't match correct
I try to build an expression to get the File Name from a string given by
ftp_rawlist()
$pFile="-rwxrwxrwx 1 owner group 35087 Aug 13 1999 Copy of fupgrade.asf";
ereg("^.+ ([0-9]) .+ ([0-9]+) (.+) ([0-9][0-9]) ([0-9][0-9](:*)[0-9][0-9])
(.+)$",$pFile, $regs);
this expression doesn't return match
i try this one:
ereg("^.+ ([0-9]) .+ ([0-9]+) (.+) ([0-9][0-9]) ([0-9]+) (.+)$",$pFile,
$regs);
but doesn't work too
the first expression works on these string:
"-rwxrwxrwx 1 owner group 3163 Dec 27 14:18 Read me & me.txt"
"drwxrwxrwx 1 owner group 0 Dec 27 14:06 test2"
but if i replace the hour by the year (as do ftp_rawlist())
that not work even with the second expression
--
Edit bug report at: http://bugs.php.net/?id=14723&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]