Top > Ruby [2.2.2] > match


String# match

puts "achaporutepiipo".match(/^a.*/)       # achaporutepiipo
puts "achaporutepiipo".match(/^a.../)      # acha
puts "acha0porute1piipo".match(/.*[0-9]/)  # acha0porute1
puts "achaporutepiipo".match(/p(\w.*)/)    # porutepiipo

正規表現!
これこそスクリプト言語を使用する時の醍醐味と言ってもおかしくないと思っています。
文字列の解析、編集は正規表現あってこそですね。正規表現で求めた文字が出力された時がうれしい。



Copyright © 2015 AchaPorutePiipo All Rights Reserved.