2019年10月15日火曜日

開発環境

初めてのPerl 第7版 (Randal L. Schwartz(著)brian d foy(著)Tom Phoenix(著)近藤 嘉雪(翻訳)嶋田 健志(翻訳)オライリージャパン)の14章(文字列処理とソード)、14.5(練習問題)2の解答を求めてみる。

コード

#!/usr/bin/env perl
use strict;
use warnings;
use utf8;
use v5.18;

say '2.';

my %last_name = (
    'fred' => 'flintstone',
    'Wilma' => 'Flintstone',
    'Barney' => 'Rubble',
    'betty' => 'rubble',
    'Bamm-Bamm' => 'Rubble',
    'PEBBLES' => 'FLINTSTONE',
);

for (sort { "\L$last_name{$a}" cmp "\L$last_name{$b}" or
            "\L$a" cmp "\L$b"
          } keys %last_name) {
    say "$_ $last_name{$_}";
}

入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal)

% ./sample2.pl
2.
fred flintstone
PEBBLES FLINTSTONE
Wilma Flintstone
Bamm-Bamm Rubble
Barney Rubble
betty rubble
% 

0 コメント:

コメントを投稿