in reply to Avoid "duplicate" fetching with LWP
that should handle those rare cases where someone puts a '#' sign in the query string - I think(?) you only care about the part of the link before the 1st '#' sign, right?for $link (@links) { @link_tokens = split("#", $link); push(@pri, $link_tokens[0]); }
|
|---|