31 lines
850 B
Raku
31 lines
850 B
Raku
package DDG::Goodie::Reverse;
|
|
# ABSTRACT: Reverse the order of chars in the remainder
|
|
|
|
use DDG::Goodie;
|
|
|
|
primary_example_queries 'reverse esrever';
|
|
description 'reverse the order of the characters in your query';
|
|
name 'Reverse';
|
|
code_url 'https://github.com/duckduckgo/zeroclickinfo-goodies/blob/master/lib/DDG/Goodie/Reverse.pm';
|
|
category 'transformations';
|
|
topics 'words_and_games';
|
|
|
|
attribution github => ['https://github.com/Getty', 'Getty'], cpan => 'GETTY';
|
|
|
|
triggers startend => "reverse text";
|
|
|
|
zci is_cached => 1;
|
|
zci answer_type => "reverse";
|
|
|
|
handle remainder => sub {
|
|
|
|
return unless $_; # Guard against empty query.
|
|
#Filter out requests for DNA/RNA reverse complements, handled
|
|
# by the ReverseComplement goodie
|
|
return if $_ =~ /^complement\s(of )?[ATCGURYKMSWBVDHN\s-]+$/i;
|
|
|
|
return qq|Reversed "$_": | . scalar reverse;
|
|
};
|
|
|
|
1;
|