From: David F. <da...@fi...> - 2004-09-13 01:12:01
|
I'm reading in a file using: my $file = read_file_lines($config {"sc_serv_conf"}); $config {"sc_serv_conf"} points to a text file. $file reports 323 lines. So far so good. Line 142 in the file I've read in is: ; AdminPassword=adminpass However when I print line 142 of $file using: print $file->[142]; print "<br>\n"; All I get is: 142 ;AdminPassword= The text after the '=' is truncated (or so it appears). Anyone have any suggestions as to what happened to the remainder of the line? David Filion |