in reply to Re^2: Regexp with unicode problem
in thread Regexp with unicode problem
Never had to use it myself, but had this snippet from a long time ago.use Unicode::String; Unicode::String->stringify_as( 'utf8' ); my $string = "This is latin text."; my $string_utf8 = Unicode::String::latin1( $string ); print $string_utf8;
|
|---|