開発環境
- macOS Mojave - Apple (OS)
- Emacs (Text Editor)
- Windows 10 Pro (OS)
- Strawberry Perl (WindowsのPerlの言語処理系)
- Visual Studio Code (Text Editor)
- Perl 5.28 (プログラミング言語)
初めてのPerl 第7版 (Randal L. Schwartz(著)、brian d foy(著)、Tom Phoenix(著)、近藤 嘉雪(翻訳)、嶋田 健志(翻訳)、オライリージャパン)の7章(正規表現)、7.10(練習問題)2の解答を求めてみる。
コード
#!/usr/bin/env perl
use strict;
use warnings;
use v5.28;
say '2.';
while (<>) {
if (/[fF]red/) {
print '[fF]red: ';
print $_;
}
if (/(f|F)red/) {
print '(f|F)red: ';
print $_;
}
}
入出力結果(Zsh、PowerShell、Terminal)
% cat sample2.txt
Fred
frederick
Alfred
fred flintstone
Mr. Slate
FredMississippi
Bamm-Bammllama
wilma
fred
% ./sample2.pl sample2.txt
2.
[fF]red: Fred
(f|F)red: Fred
[fF]red: frederick
(f|F)red: frederick
[fF]red: Alfred
(f|F)red: Alfred
[fF]red: fred flintstone
(f|F)red: fred flintstone
[fF]red: FredMississippi
(f|F)red: FredMississippi
[fF]red: fred
(f|F)red: fred
%
0 コメント:
コメントを投稿