開発環境
- OS X Mavericks - Apple(OS)
- BBEdit - Bare Bones Software, Inc., Emacs (Text Editor)
- Perl (プログラミング言語)
初めてのPerl 第6版 (Randal L. Schwartz (著)、brian d foy (著)、Tom Phoenix (著)、近藤 嘉雪 (翻訳)、オライリージャパン)、14章(文字列処理とソート)の14.5(練習問題)2.を解いてみる。
その他参考書籍
14.5(練習問題)2.
コード(BBEdit, Emacs)
sample305_2.pl
#!/usr/bin/env perl use strict; use warnings; use utf8; use 5.016; binmode STDIN, ':utf8'; binmode STDOUT, ':utf8'; binmode STDERR, ':utf8'; my %last_name = qw{ fred flintstone Wilma Flintstone Barney Rubble betty rubble Bamm-Bamm Rubble PEBBLES FLINTSTONE}; for (sort { lc $last_name{$a} cmp lc $last_name{$b} or lc $a cmp lc $b} keys %last_name) { say "$_ $last_name{$_}"; }
入出力結果(Terminal)
$ ./sample305_2.pl fred flintstone PEBBLES FLINTSTONE Wilma Flintstone Bamm-Bamm Rubble Barney Rubble betty rubble $
0 コメント:
コメントを投稿