Help for this page

Select Code to Download


  1. or download this
     open (OUT, "output.txt");
     binmode(OUT, ":utf8");
     print OUT Dumper(\@matches);
     close OUT;
    
  2. or download this
    open( OUT, ">:utf8", "output.txt" ) or die "output.txt: $!\n";
    
  3. or download this
    print OUT "\x{feff}\n";
    # and then print all the utf8 text content...