in reply to Re: ignore UTF codes
in thread ignore UTF codes
-------------------------------------------
Ok there is a utf8::is_utf8() module. Itll find out if your character is utf8. so for example
the output is "noyes" ...$a=chr(0x74); print utf8::is_utf8($a)?"yes":"no"; $a=chr(0x470); print utf8::is_utf8($a)?"yes":"no";
if you can provide some more code i can give you a more specific answer
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: ignore UTF codes
by kettle (Beadle) on Mar 16, 2006 at 04:47 UTC | |
|
Re^3: ignore UTF codes
by kettle (Beadle) on Mar 16, 2006 at 05:26 UTC |