Hi monks,
I read an unicode file and just print out its content. but the while loop just stop somewhere in the middle of the file. If I changed the file to ASCII, then the while loop can loop throughly. here is my simple code:
open RS, "< $rs_file";
while (my $line = <RS>){
print "$. $line";
}
close RS;