# list0604.rb # 標準入力文字列から情報を抽出する。 # (you can 〜 のフレーズのうち、〜部分を表示する) $stdin.each{|line| line.chomp! # 改行文字を削る if /you can (\S+)/ =~ line puts $1 end }