in reply to Re^2: how to output file in Unicode
in thread how to output file in Unicode
sub writeUnicode($$) {my ($f, $s) = @_;
Assigns parameter 1 to the subroutine from @_ to $f and parameter 2 to $s. One could also write my $f = $_[0]; my $s = $_1;
if ($f =~ /\A(.+[\\\/])/) {my $d = $1; makePath($d); }
Extracts the path component of the file name and places it in variable $d so that we can make a directory for the output file. If you know that the output directory exists, then there is no need for this code. The assignment to $d is somewhat verbose, one could use makePath($1) to use the first expression captured by the regular expression in the if statement directly. The regular expression captures the text up to the last \ or / in the file name and uses that as the path component.
say {$F} $s;
Writes the contents of $s to the file whose handle is in $F. The file is automatically closed at the end of the block containing my $F. This statement is an alternative to $F->say($s);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: how to output file in Unicode
by anakin30 (Acolyte) on Aug 27, 2012 at 11:10 UTC | |
by philiprbrenan (Monk) on Aug 27, 2012 at 19:46 UTC |