2019年5月14日火曜日

開発環境

初めてのPerl 第7版 (Randal L. Schwartz(著)brian d foy(著)Tom Phoenix(著)近藤 嘉雪(翻訳)嶋田 健志(翻訳)オライリージャパン)の8章(正規表現によるマッチ)、8.7(練習問題)5の解答を求めてみる。

コード

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

# Wide character in print at ... line ...が出力されないようにに指定
# 付録C(Unicode入門)、C.4(ファンシーな文字)、C.4.2(さらにファンシーな文字)より
# WindowsとmacOSのどちらでも標準入力、標準出力、標準エラーについてちゃんと動くように設定
use Encode::Locale;
binmode STDIN, ':encoding(console_in)';
binmode STDOUT, ':encoding(console_out)';
binmode STDERR, ':encoding(console_out)';

say '5.';

my $label_name = 'word';
while (<>) {
    chomp;
    if (/(?<$label_name>\w*a)\b(?<after>.{0,5})/) {
        # print "Matched: |$`<$&>$'|\n";
        print "$label_name contains '$+{$label_name}' 「$+{after}」\n";
    } else {
        print "No match: |$_|\n";
    }
}

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

C:\Users\...>type input5.txt
fred
fred wilma
Mississippi
wilma fred
Bamm-Bamm
Fred
frederick
Alfred
fred flintstone
perl
Mr. Slate
.emacs
.
abcde.
llama
fredwilma
wilmafred
frea llama wilma
llama wilma fred
wilma fred llama
wilma llama fred
llama fred wilma
fred wilma llama
I saw Wilma yesterday
I, Wilma!
wilma

C:\Users\...>perl sample5.pl < input5.txt
5.
No match: |fred|
word contains 'wilma' 「」
No match: |Mississippi|
word contains 'wilma' 「 fred」
No match: |Bamm-Bamm|
No match: |Fred|
No match: |frederick|
No match: |Alfred|
No match: |fred flintstone|
No match: |perl|
No match: |Mr. Slate|
No match: |.emacs|
No match: |.|
No match: |abcde.|
word contains 'llama' 「」
word contains 'fredwilma' 「」
No match: |wilmafred|
word contains 'frea' 「 llam」
word contains 'llama' 「 wilm」
word contains 'wilma' 「 fred」
word contains 'wilma' 「 llam」
word contains 'llama' 「 fred」
word contains 'wilma' 「 llam」
word contains 'Wilma' 「 yest」
word contains 'Wilma' 「!」
word contains 'wilma' 「」

C:\Users\...>

0 コメント:

コメントを投稿