in reply to Re: Date::Manip and German months names
in thread Date::Manip and German months names
The source wants the abbreviation Mar
Not sure. As I'm reading the source, it should (or is trying to) also support "Mär", as set up by the "M${a}r". $a is defined as
my(%h)=(); _Char_8Bit(\%h); my($a)=$h{"a:"};
with the routine _Char_8Bit() mapping "a:" to the char \xe4
sub _Char_8Bit { my($hash)=@_; ... $$hash{"a:"} = "\xe4"; # LATIN SMALL LETTER A WITH DIAERESIS ... }
In other words, "M${a}r" corresponds to ISO Latin "Mär". So it should work, I think.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Date::Manip and German months names
by EvanCarroll (Chaplain) on Jul 09, 2008 at 19:37 UTC | |
by ikegami (Patriarch) on Jul 09, 2008 at 19:45 UTC | |
|