in reply to Re^2: how to split a file.txt in multiple text files
in thread how to split a file.txt in multiple text files
My example was used on UTF-8 encoded files that contained quite a few characters outside of the iso-8895-1 range, so I should have noted the same warnings if my example was seriously flawed.
Is your data secret, or is it sharable, in which case, some of us might want to download it (in a zip) to check.
As you converted my command-line example to a script, maybe it would be a goor idea to show what the script looks like. You might have missed a crucial issue. It might look a bit like this:
use strict; use warnings; use autodie; local $/ = \3000; my $i = "0000"; while (<>) { my $fn = "zz" . $i++; open my $fh, ">:encoding(utf-8)", $fn or die "$fn: $!"; print $fh $_; close $fh; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: how to split a file.txt in multiple text files
by saulnier (Initiate) on Feb 14, 2019 at 21:18 UTC | |
by choroba (Cardinal) on Feb 14, 2019 at 21:52 UTC | |
by saulnier (Initiate) on Feb 15, 2019 at 07:34 UTC | |
by Tux (Canon) on Feb 15, 2019 at 09:51 UTC | |
by saulnier (Initiate) on Feb 15, 2019 at 16:37 UTC | |
by Tux (Canon) on Feb 15, 2019 at 19:17 UTC | |
|