一时想不起来了htmlencode是哪个模块

一时想不起来了htmlencode是哪个模块

一时想不起来了htmlencode是哪个模块
就是将一些特殊的HTML标签转义,并能正常原样的显示在HTML网页上

怕自己写的不完善,原来asp中的Server.HtmlEncode的perl有没有对应的模块?
实现这个功能的,在哪 个模.
实现这个功能的,在哪 个模块里?
sub specialchar_cnv
{

local($ch) = @_;

$ch =~ s/&/&/g; # &
$ch =~ s/\"/"/g; #"
$ch =~ s/\'/'/g; # '
$ch =~ s/</</g; # <
$ch =~ s/>/>/g; # >
return($ch);
}
把 & # % 转义了就可以了.
URI::Escape----http:.
URI::Escape

http://search.cpan.org/~gaas/URI-1.35/URI/Escape.pm