Chinaunix
标题:
怎样将html里的特殊字符解码出来?
[打印本页]
作者:
mylongwalk
时间:
2011-05-17 19:09
标题:
怎样将html里的特殊字符解码出来?
本帖最后由 mylongwalk 于 2011-05-17 23:15 编辑
如 > => '>' & => '&'等,试了HTML::Entities; 不知为何 显示为了乱码(或者不显示)。
谢谢。
use strict;
use HTML::Entities;
my $data ="hi>you<and me";
my $content = decode_entities($data);
print $content;
复制代码
结果:
hi>you<andme
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2