use utf8

来源:互联网 发布:js url转base64编码 编辑:程序博客网 时间:2024/05/18 03:08
[root@wx03 0724]# cat a2.pl use Encode;my $a=<STDIN>;my $b=encode_utf8('微信');print "\$b is $b\n";if ($a =~/$b/){print "success\n";};[root@wx03 0724]# perl a2.pl 23微信2231$b is 微信[root@wx03 0724]# cat a2.pl use Encode;my $a=<STDIN>;my $b=encode_utf8('微信');print "\$b is $b\n";if ($a =~/$b/){print "success\n";};/**************************************[root@wx03 0724]# perl a2.pl 23微信2231$b is 微信success[root@wx03 0724]# cat a2.pl use Encode;use utf8;my $a=<STDIN>;my $b=encode_utf8('微信');print "\$b is $b\n";if ($a =~/$b/){print "success\n";};

0 0
原创粉丝点击