Further inspection of the problem leads me to the conclusion that this may not be related to encode. I fired up my Debugger and performed some tests. Notice how the Character \N{greek:alpha} was found on Linux, but not on AIX:
AIX 7.2:
DB<1> use charnames qw(greek)
DB<2> print "\N{alpha}"
Use of uninitialized value $txt in pattern match (m//) at /usr/opt/per
+l5/lib/5.20.1/_charnames.pm line 459.
[...]
Unknown charname 'alpha' at (eval 9)[/usr/opt/perl5/lib/5.20.1/perl5db
+.pl:732] line 2, within string
DB<3> print "\N{U+03B1}"
Wide character in print at (eval 10)[/usr/opt/perl5/lib/5.20.1/perl5db
+.pl:732] line 2.
[...]
α
DB<4> print "\N{greek:alpha}"
Use of uninitialized value $txt in pattern match (m//) at /usr/opt/per
+l5/lib/5.20.1/_charnames.pm line 459.
[...]
Unknown charname 'greek:alpha' at (eval 11)[/usr/opt/perl5/lib/5.20.1/
+perl5db.pl:732] line 2, within string
Ubuntu 14.04
DB<1> use charnames qw(greek)
DB<2> print "\N{alpha}"
Unknown charname 'alpha' at (eval 8)[/usr/share/perl/5.18/perl5db.pl:
+732] line 2, within string
DB<3> print "\N{U+03B1}"
Wide character in print at (eval 9)[/usr/share/perl/5.18/perl5db.pl:7
+32] line 2.
α
DB<4> print "\N{greek:alpha}"
Wide character in print at (eval 10)[/usr/share/perl/5.18/perl5db.pl:
+732] line 2.
α
Guess there is something messed up with the AIX character-table?
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link
or How to display code and escape characters
are good places to start.
|