hi monks,
finding my ways through the vast fields of perl using "intermediate perl" by o'reilly as a guide ... currently, in the middle of not-loosing-my-head while trying to understand the schwartzian transform ... one thing acutally strikes me: the following code is working sweet as:
my @words = qw (Oli Sonni sonja oliver speedy 112);
my @output =
map $_->[0],
sort {$a->[1] cmp $b->[1]}
map {
my $string = $_;
$string =~ tr/A-Z/a-z/;
$string =~ tr/a-z//cd;
[$_, $string]}
@words;
for my $word (@output){say $word;}
The output, as expected is a "dictionary"-sorted list (acutllay, that's the solution proposed in the actual book itself): 123 ... Oli ... speedy
However, I did come up with quite a similar solution. The only difference is that I stuffed the regexes into a subroutine:
my @words = qw (Oli Sonni sonja oliver speedy 112);
my @output =
map $_->[0],
sort {$a->[1] cmp $b->[1]}
map [$_, transform($_)],
@words;
sub transform{
my $string = shift;
$string =~ tr/A-Z/a-z/;#kleinschreibung
$string =~ tr/a-z//cd;
}
for my $word (@output){say $word;}
As a result, I am getting the original sorting of the list. Some enlighted monk being able to see what I do not see ...?
Thanks in advance,
Oli
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|