in reply to Re^5: Mugged by UTF8, this CANNOT be right
in thread Mugged by UTF8, this CANNOT be right
Perl is an incredible language, my exclusive language for 15 years now, but when it comes to the global language requirements that most web programming ultimately requires perhaps Perl is presently just not suited to that task.
None of those tasks are Perl-specific.
and each needs to be checked, decoded, encoded, numerous times.
None need to be "checked". If you don't want to use NULLs, don't use NULLs. If you want to use NULLs, don't complain that you're using NULLs.
As for your claim that each needs to be decoded and encoded multiple times, it's non-sense. Everything needs to be decoded and encoded exactly once, and that can usually be done automatically.
Which leads me to ask: Is there a programming language that easily handles Unicode either automatically
Unicode is not an encoding.
Your problem has to do with dealing the encodings of various data sources. You have to do that no matter what language unless it places limits on your data sources and on your outputs.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Mugged by UTF8, this CANNOT be right
by DrHyde (Prior) on Jan 27, 2011 at 10:55 UTC | |
by ikegami (Patriarch) on Jan 27, 2011 at 16:49 UTC | |
by NodeReader (Initiate) on Jan 27, 2011 at 19:27 UTC | |
by Anonymous Monk on Jan 27, 2011 at 20:20 UTC | |
by ikegami (Patriarch) on Jan 27, 2011 at 20:39 UTC | |
by NodeReader (Initiate) on Jan 27, 2011 at 21:38 UTC | |
|