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

19 lines
288 B
Perl
Raw Normal View History

2012-03-14 14:40:36 -07:00
package DDG::Goodie::FlipText;
use DDG::Goodie;
triggers startend => "flip";
zci is_cached => 1;
handle remainder => sub {
my @string = split(//, $_);
my $flippedString = "";
foreach $char (@string) {
$flippedString .= "\x{0250}" if $char eq "a";
}
return $flippedString;
};