2014年4月1日火曜日

開発環境

初めてのPerl 第6版 (Randal L. Schwartz (著)、brian d foy (著)、Tom Phoenix (著)、近藤 嘉雪 (翻訳)、オライリージャパン)、9章(正規表現によるテキスト処理)の9.6(練習問題)1.を解いてみる。

その他参考書籍

9.6(練習問題)1.

コード(BBEdit, Emacs)

sample207.pl

#!/usr/bin/env perl
# use diagnostics;
use strict;
use warnings;
use 5.016;
use utf8;
binmode STDIN, ':utf8';
binmode STDOUT, ':utf8';
binmode STDERR, ':utf8';

my $what = 'fred|barney';

while (<>) {
    if (/($what){3}/) {
        say 'match';
    }
}

入出力結果(Terminal)

$ ./sample207.pl 
fredfredfred
match
fredfredbarney
match
barneyfredfred
match
barneybarneybarney
match
fredfredfre

barney
$ 

0 コメント:

コメントを投稿