summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/acronyms.pl17
1 files changed, 16 insertions, 1 deletions
diff --git a/scripts/acronyms.pl b/scripts/acronyms.pl
index d78afad..b81184a 100755
--- a/scripts/acronyms.pl
+++ b/scripts/acronyms.pl
@@ -17,9 +17,11 @@ package Travel::Status::DE::IRIS::Acronyms;
use strict;
use warnings;
-use 5.010;
+use 5.018;
use utf8;
+use List::MoreUtils qw(firstval);
+
our $VERSION = '0.00';
my @acronyms = (
@@ -43,5 +45,18 @@ sub get_acronyms {
return @acronyms;
}
+sub get_acronym_by_name {
+ my ( $name ) = @_;
+
+ my $nname = lc($name);
+ my $actual_match = firstval { $nname eq lc($_->[1]) } @acronyms;
+
+ if ($actual_match) {
+ return ($actual_match);
+ }
+
+ return ( grep { $_->[1] =~ m{$name}i } @acronyms );
+}
+
1;
EOF