Advertisement
zloyrusskiy

Oshibka s Mojo::DOM - detailed

Jul 13th, 2011
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. C:\Users\Александр>perl -MMojo::Util -E "$a = 'some' . qq(\x88) . 'text';say Mojo::Util::decode('utf-8',$a); say $a; say $@;"
  2.  
  3.  
  4. utf8 "\x88" does not map to Unicode at C:/strawberry/perl/site/lib/Mojo/Util.pm line 350.
  5.  
  6.  
  7. C:\Users\Александр>perl -MEncode -E "$a = 'some' . qq(\x88) . 'text';say Encode::decode('utf-8',$a); say $a; say $@;"
  8. Wide character in print at -e line 1.
  9. someя┐╜text
  10. someИtext
  11.  
  12.  
  13. C:\Users\Александр>perl -MMojo::Util -E "$a = 'some' . qq(\x88) . 'text';say Mojo::Util::decode('UTF-8',$a); say $a; say $@;"
  14.  
  15.  
  16. Died at C:/strawberry/perl/site/lib/Mojo/Util.pm line 346.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement