Greetings Monksters,
I've been struggling for some time attempting to convert ISO-8859-1 web pages (html files) to utf8 encoded html files.
I've tried iconv(1), which failed. So I tried piconv(1), which
also failed
It's not that either
can't accomplish the task -- it's that they
refuse to perform the task.
Example; I have some ~1,000 .html files I want to convert from Latin1 => utf8:
#!/bin/sh -
# 2utf8 (via iconv(1)
for i in *.html;
do
iconv -f iso-8859-1 -t utf8 $i > $i.tmp
rm $i
mv $i.tmp $i
done
The resulting files
remain ISO-8859-1.
This time with piconv(1):
#!/bin/sh -
# 2utf8 (via Piconv(1)
for i in *.html;
do
piconv -f iso-8859-1 -t utf8 $i > $i.tmp
rm $i
mv $i.tmp $i
done
Again, the resultant files
remain ISO-8859-1 (Latin1).
All of these files contain the following line within the <head> tags:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1
+">
Strangley, if I change that line to:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
and perform:
piconv -f ISO-8859-1 -t utf8 index.html > index.htm
The resultant file
will be utf8 encoded.
Is this a bug in Perl?
Any, and all help with this
greatly appreciated.
Thank you for all your time, and consideration.
--chris
#!/usr/bin/perl -Tw
use perl::always;
my $perl_version = "5.12.4";
print $perl_version;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.