17
In Perl, come posso leggere un intero file in una stringa?
Sto cercando di aprire un file .html come una stringa lunga e grande. Questo è quello che ho: open(FILE, 'index.html') or die "Can't read file 'filename' [$!]\n"; $document = <FILE>; close (FILE); print $document; che si traduce in: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN Tuttavia, voglio che il risultato …