在Perl中解码UTF-8 URL

前端之家收集整理的这篇文章主要介绍了在Perl中解码UTF-8 URL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑:
use URI::Escape;
print uri_unescape("%C3%B3");

输出:³

用这个http://meyerweb.com/eric/tools/dencoder/解码

输出:ó

这是预期的.

我应该用什么Perl库来获得正确的输出

解决方法

如果你知道字节序列是 UTF-8,那么使用Encode :: decode:
use Encode;
use URI::Escape;

my $in = "%C3%B3";
my $text = Encode::decode('utf8',uri_unescape($in));

print length($text);    # Should print 1
原文链接:https://www.f2er.com/Perl/172906.html

猜你在找的Perl相关文章