PERL GB2312 UTF-8 编码转换

前端之家收集整理的这篇文章主要介绍了PERL GB2312 UTF-8 编码转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
gb2312转Utf的方法
use Encode;
my $str = "中文";
$str_cnsoftware = encode("utf-8",decode("gb2312",$str));
 
Utf转 gb2312的方法

use Encode;
my $str = "utf8中文";
$str_cnsoftware = encode("gb2312",decode("utf-8",$str);

 

转自

http://www.sysab.cn/a/pro/perl/2009/1204/7951.html

原文链接:/Perl/785374.html

猜你在找的Perl相关文章