○パターンマッチ ---------------------------------------------------- ▼条件式 文字列 =~ /正規表現で書かれたパターン/ $str="testhellotest"; if($str=~/hello/){ print "ふくまれています"; }else{ print "ふくまれていません"; } 処理結果 ふくまれています ■1文字だけのワイルドカードは . です $str="testhellotest"; if($str=~/h...o/){ print "ふくまれています"; }else{ print "ふくまれていません"; } 処理結果 ふくまれています ■複数文字のワイルドカードは * です $str="testhellotest"; if($str=~/h*o/){ print "ふくまれています"; }else{ pri