zeroclickinfo-goodies/lib/DDG/Goodie/Base.pm

29 lines
669 B
Perl
Raw Normal View History

package DDG::Goodie::Base;
use 5.010;
use strict;
use warnings;
use Math::Int2Base qw/int2base/;
use DDG::Goodie;
2012-03-20 21:08:12 -07:00
zci answer_type => "conversion";
2012-03-22 17:56:19 -07:00
zci is_cached => 1;
my %base_map = (
hex => 16,
hexadecimal => 16,
oct => 8,
octal => 8,
binary => 2,
);
2012-04-15 18:31:26 -07:00
triggers any => 'base', keys %base_map;
handle query_clean => sub {
return unless /^([0-9]+)\s*(?:(?:in|as|to)\s+)?(hex|hexadecimal|octal|oct|binary|base\s*([0-9]+))$/;
my $number = $1;
my $base = $3 // $base_map{$2};
return if $base < 2 || $base > 36;
my $based = int2base($number, $base);
return "$number in base $base is $based";
};
1;