View Single Post
Old 02-23-2006, 10:30 PM  
Spider Ninja
Registered User
 
Join Date: Nov 2005
Location: NYC ICQ: 320970274
Posts: 2,051
well, something like:

Code:
#!/usr/bin/perl
use strict;
use LWP::Simple;

my $url = "http://www.domain.com/page.html";

my $html = get($url);

my $match;

if ($html =~ /countryMatch=([^;]+)/) {
    $match = $1;
}

print $match;
Spider Ninja is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote