in reply to Reading arrays
------ the output of $result doesnt show me the elements where i'm lookking for. Dumper(@geo) returns: gives me:#! /usr/bin/perl -w use Data::Dumper; use Win32::OLE; my $fso = Win32::OLE->new("HHCOM.GeoSearch.CircleRangeSearch"); @geo = $fso->FindLocationsInCircleRange("CGN",70) ; print Dumper(@geo); foreach my $records (@geo){ print "$records\n"; }
How can i read them?$VAR1 = [ 'BNJ', 'CGN', 'DUS', 'ESS', 'MGL', 'SGE' ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Reading arrays
by GrandFather (Saint) on Feb 26, 2011 at 21:56 UTC |