ID: 14723 Updated by: mfischer Reported By: [EMAIL PROTECTED] Status: Open Bug Type: *Regular Expressions Operating System: WIN2K PHP Version: 4.0.5 New Comment:
Please ask support questions at [EMAIL PROTECTED] . Hint: You may want to use preg_match or even skip the regex part and use explode/split on (white)spaces. Previous Comments: ------------------------------------------------------------------------ [2001-12-27 10:26:49] [EMAIL PROTECTED] 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 this 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]