casefold? -> bool
[permalink][rdoc][edit]-
正規表現が大文字小文字の判定をしないようにコンパイルされている時、真を返します。
reg = Regexp.new("foobar", Regexp::IGNORECASE) p reg.casefold? # => true reg = Regexp.new("hogehoge") p reg.casefold? # => false
casefold? -> bool
[permalink][rdoc][edit]正規表現が大文字小文字の判定をしないようにコンパイルされている時、真を返します。
reg = Regexp.new("foobar", Regexp::IGNORECASE)
p reg.casefold? # => true
reg = Regexp.new("hogehoge")
p reg.casefold? # => false