使用perl时遇到的几个问题

1. 用LWP::Simple中的get下了一个HTML,用模式匹配解析url,可气的是明明看见了某个url,用模式匹配却匹配不到,考虑到html中有换行,所以我用了参数/s以 将多行折起来,但是依然无效。后来发现必须用 s/[ s]//g 把其中的stopword全去掉才行。因为模式匹配遇到这些符号会中断。

2. 著名的Text::Iconv可以把UTF-8转为GBK( 路人皆知了:) ),但html中有很多符号会打断这一转码过程,结果输出的是空。应该用 new Convert("utf-8", "gbk//ignore) 创建convert,这样即使发现了不能顺利转换某个字符,也能跳过它继续处理其它字符,避免输出为空。

相关文章

分类

留言:

关于文章

This page contains a single entry by DongHao published on 08 15, 2007 6:40 PM.

为vim不同类型文件添加xml语法颜色 was the previous entry in this blog.

Python , Delphi , Loki 有趣的来源 is the next entry in this blog.

Find recent content on the main index or look in the 存档 to find all content.