Help for this page

Select Code to Download


  1. or download this
    if (@filename = ($_ =~ /$test_regexp/g)) {
        my @complete_urls = map { "http://...." . $_ } @filename;
        ...
    }
    
  2. or download this
    if (@complete_urls = ($_ =~ /$test_regexp/g)) {
        my @filename = map { s{^.*/}{}; $_ } @complete_urls;
        ...
    }