Pig Latin words are not supposed to begin with consonants.
flea becomes
ea-flay and
leaf becomes
eaf-lay. If you use hyphens, you can create that
distinction. If you don't want to use a visible character,
though, insert a NUL. Oh, and since when does
about
become
aboutway? I never heard of the 'insert a w'
rule.
s/\b(qu|[^\W0-9_aeiou]+)?(\w+)/$1?"$2\0$1ay":"$2\0ay"/egi;
The preceeding code allows you to decode the string. While
it does effect length(), a simple (?) work-around would be:
package PigLatin;
use overload (
q{""} => sub {
(my $str = ${ $_[0] }) =~ tr/\0//d;
return $str;
},
fallback => 1,
);
sub to {
my ($class,$word) = @_;
$word =~ s/\b(qu|[^\W0-9_aeiou]+)?(\w+)/$1?"$2\0$1ay":"$2\0ay"/egi;
bless \$word, $class;
}
sub from {
my $word = substr ${ $_[-1] }, 0, -2;
# $word has the \0 in it
return join "", reverse split /\0/, $word;
}
1;
This module would be used as so:
use PigLatin;
$plain = "Practical Extraction and Report Language";
$funny = to PigLatin $plain;
$reg = from PigLatin $funny;
length($funny) would be 50, but length($$funny) is 55, due
to the 5 added NULs.
$_="goto+F.print+chop;\n=yhpaj";F1:eval
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.