in reply to Re^4: Transferring hash keys to array... Need help sorting
in thread Transferring hash keys to array... Need help sorting
Of course you can manipulate the data. For example:
Should perform the rot13 cryption on all the label fields. See perlop for =~, tr, etc.foreach my $record (values %$HoH) { $record->{label} =~ tr/A-Za-z/N-ZA-Mn-za-m/; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Transferring hash keys to array... Need help sorting
by DARK SCIENTIST (Novice) on Apr 21, 2017 at 20:51 UTC |