Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: REGEX for url

by tangent (Parson)
on Apr 25, 2016 at 22:15 UTC ( [id://1161489]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use HTML::TreeBuilder::XPath;
    
    ...
    for my $link ( @links ){
        print $link->attr('href'), "\n";
    }
    
  2. or download this
    my @links = $tree->findnodes('//td/a') ;
    for my $link ( @links ){
        print $link->attr('href'), "\n";
    }
    
  3. or download this
    /Archives/edgar/data/1050122/000092735601000365/0000927356-01-000365-0
    +001.txt
    /Archives/edgar/data/1050122/000092735601000365/0000927356-01-000365-0
    +002.txt
    ...
    /Archives/edgar/data/1050122/000092735601000365/0000927356-01-000365-0
    +009.txt
    /Archives/edgar/data/1050122/000092735601000365/0000927356-01-000365-0
    +010.txt
    /Archives/edgar/data/1050122/000092735601000365/0000927356-01-000365.t
    +xt
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1161489]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (1)
As of 2024-04-19 00:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found