> Can anyone send me any solution
> to read the paragraph from a text file?

To read paragraphs (delimited by one or more blank
lines (really blank, no spaces or tabs)), change the
record separator from its default (newline) to the
null string ('').

    $/ = '';

    while (<>) {
        print;
    }

Reply via email to