暂住证的有

08月 25th, 2008 ychen

今天又来查暂住证。

想起小时候看到抗战片的片段:

”你地,良民证地有?“

”我地,良民地干活“掏出身份证。

check。。。

”soga,杭州户口,你地,良民,走“。

发誓,再也不住农民房了,以后。。。

Posted in 未分类 | No Comments »

Perl 的两个正则表达式匹配

08月 25th, 2008 ychen

Email:~m/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/

URL:~m/[a-zA-z]+:\/\/[^\s]*/

$&表示匹配到的变量

课题是:如何自动用perl分析网页中的email和url。

我想再加个手机号码,嘿嘿。这些信息应该有用。

 

想象一下,如果我有100万email地址,我会用来干嘛呢?

Posted in 未分类 | No Comments »

用perl抓取网页内容

08月 13th, 2008 ychen

my $url = ‘http://your web site’;

use LWP::Simple;
my $content = get $url;
die “Couldn’t get $url” unless defined $content;

# Then go do things with $content, like this:
print $content;

如此简单

Posted in 未分类 | No Comments »

这自行车不错,有点像古代的水车

08月 12th, 2008 ychen

alliptigo bike

alliptigo bike

Posted in 未分类 | 1 Comment »

北京欢迎你

08月 12th, 2008 ychen

 

 

魔兽世界版《北京欢迎你》

 

天下2版

 

英文演唱版

 

 

这首歌还不错,比那个什么《you and me》好多了。开幕式的时候都没听清在唱啥。

Posted in 未分类 | No Comments »