My program writes string to a text file and reads them back in. I do it like
this:

print OUT "$str\n";

and then

$str = <IN>;
chomp($str);

The problem is one of my strings is "00". It gets written out fine, but gets
read in as "0". How can I stop this from happening?

Thx



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to