in reply to Re: $_ and nested while loops w/angle operator
in thread $_ and nested while loops w/angle operator
Update: I think you'd better write it like:while ((($_=<FH>) !~ /^\"\@ENDQUERY\"/) or (eof FH)) {
while ((($_=<FH>) !~ /^\"\@ENDQUERY\"/) and (not eof FH)) {
|
|---|