⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htmlcleanup1.pl

📁 harvest是一个下载html网页得机器人
💻 PL
字号:
#!/usr/local/bin/perl# things this script does:#    1. removes empty lines#    2. removes <B> </B> with nothing between it#    3. changes <B> foo</B> to <H2>foo</H2>while(<>) {    if($ARGV ne $oldargv) {	rename($ARGV, $ARGV . '.1.bak');	open(ARGVOUT, ">$ARGV");	select(ARGVOUT);	$oldargv = $ARGV;    }    chop;    next if /^$/;		# kill empty lines    if($suck_em && /^\<\/em\>$/) {	next;    }    $suck_em=0;    s,\<[bB]\> \</[bB]\>,,g;		# kill empty annotation    # if one sees a bolding on a line by itself, then turn it into a second level heading.    s,^\<[bB]\> ([^<]*)\</[bB]\>$,<H2>\1</H2>,;    if(s,^\<[bB]\> \<em i\>([^<]*)\</[bB]\>$,<H2>\1</H2>,) {	# suck next line as well if it contains just </em>	$suck_em=1;    }    print "$_\n";}        

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -