正規表現に適する文字列を見つける
Top > Ruby [2.2.2] > match
puts "achaporutepiipo".match(/^a.*/) # achaporutepiipo puts "achaporutepiipo".match(/^a.../) # acha puts "acha0porute1piipo".match(/.*[0-9]/) # acha0porute1 puts "achaporutepiipo".match(/p(\w.*)/) # porutepiipo