in reply to Re: grep confusion
in thread grep confusion
use strict; use warnings; use List::MoreUtils qw(first_value); my(%DetailSheet) = ( ... ); my %Column = %{$DetailSheet{ColumnName}}; my $description = first_value {$Column{$_}{XlsColumn} == 2} keys %Colu +mn; print $description, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: grep confusion
by LanX (Saint) on Sep 01, 2017 at 14:15 UTC | |
|
Re^3: grep confusion
by PriNet (Monk) on Sep 03, 2017 at 00:23 UTC |