Help for this page

Select Code to Download


  1. or download this
    @t1 = $resp->content=~/($cat_url_pattern\d+)/g;
    @t2 = $resp->content=~/$cat_url_pattern\d+','([^']+)'/g;
    
  2. or download this
    while ($resp->content=~/($cat_url_pattern\d+)','([^']+)'/g){
        push @t1, $1;
        push @t2, $2;
    }