Chinaunix

标题: 怎样将html里的特殊字符解码出来? [打印本页]

作者: mylongwalk    时间: 2011-05-17 19:09
标题: 怎样将html里的特殊字符解码出来?
本帖最后由 mylongwalk 于 2011-05-17 23:15 编辑

如 >  => '>'     &    => '&'等,试了HTML::Entities; 不知为何 显示为了乱码(或者不显示)。
谢谢。
  1. use strict;
  2. use HTML::Entities;

  3. my $data ="hi>you<and me";
  4. my $content = decode_entities($data);
  5. print $content;
复制代码
结果:
hi>you<andme




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2