Perl:分析頁面,提取下載連結和檔案對應的名稱。

來源:互聯網
上載者:User

標籤:style   blog   http   color   使用   ar   for   檔案   div   

系統:Windows

語言:Perl

工具:Notepad++/cmd

目前要用PERL來分析一下頁面。然後組群下載檔案然後更名。

首先,rar檔案串連在二級檔案裡。rar檔案的名稱是數字,其對應的中文名稱在一級頁面上對應二級頁面的串連。我看了Perl的Cookbook,裡面建議用模組。但是我打算用Regex自己寫一個指令碼。這裡只用了簡單的LWP::Simple模組。

技術:這裡使用了Regex的$1,$2...來提取一行中需要的段。(需要注意的是:$1,$2...的命名空間只是它們上一個帶有()的Regex。最近一個帶有()的Regex已經失效了。除非即時賦值給變數。)

#t.pl# to split out index url and rar page.use warnings;use LWP::Simple;sub getDownloadPage {my @lines=split("\n", $_[0]);my $line1="";    foreach my $line(@lines) {        if ($line=~/<li class="itm">[^<]*<span> *[0-9]{4}-[0-9]{2}-[0-9]{2} *<\/span>[^<]*<a href="([^"> ]*)" *>([^<]*)</) {            print $1," ",$2,"\n";        }    }}my @indexes;unshift @indexes, "http://www.yingyu.com/stxz/chuzhong/zhongkao/";# get index page.my $content=get($indexes[0]);my @hrefs=split "href=\"", $content;shift @hrefs;foreach $href(@hrefs) {    if($href=~/(http:\/\/.*index[_0-9]*\.shtml)" *>[0-9]+/) {        push @indexes, $1;    }}#page download page and its relative Chinese name.foreach $index(@indexes) {    $content=get($index);    # my @pages=split "<li ", $content;    # shift @pages;    getDownloadPage($content);    }

 

Perl:分析頁面,提取下載連結和檔案對應的名稱。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.