On Fri, 15 Nov 2002, Ramprasad A Padmanabhan wrote:
> This will help you
>
> open (FILE, "<test.xml");
>
> {
> local($/)=undef;
> $text = <FILE>;
This will read the entire file ("text.xml") into $text
> }
> while($text = <FILE>)
Making the while here redundant
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
