in reply to Re: splitting file with mutiple output filenames
in thread splitting file with mutiple output filenames

Ok, you solved problem, but let's make the post worth while by passing on the usual round of "wisdom". Consider:

#!/usr/bin/perl # chess.plx use warnings; use strict; use utf8; my $filename = "thaikjv-fixed.txt"; open my $fIn, '<', $filename or die "Can't open $filename: $!\n"; binmode ($fIn, ":utf8"); while (defined (my $line = <$fIn>)) { next if $line !~ /^@(...\d\d\d)/; my $outname = "$1.html"; open my $fOut, '>', $outname or die "Can't create $outname: $!\n"; binmode ($fOut, ":utf8"); print $fOut $line; print "hi"; close $fOut; }

Note:

True laziness is hard work

Replies are listed 'Best First'.
Re^3: splitting file with mutiple output filenames
by moritz (Cardinal) on Apr 11, 2012 at 09:49 UTC