in reply to whois modules? Any recommendation?
I haven't tried any of these modules, but to answer your question about calling methods with a hyphen in the name:
my $whois = Net::XWhois->new(...); my $orgname = $whois->${\ "org-name" };
Or:
my $whois = Net::XWhois->new(...); my $orgname = do { my $m = "org-name"; $whois->$m };
|
|---|