るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.015秒)

別のキーワード

  1. uri regexp
  2. _builtin regexp
  3. etc sc_regexp
  4. regexp match
  5. regexp last_match

ライブラリ

クラス

検索結果

Regexp.try_convert(obj) -> Regexp | nil (27487.0)

obj を to_regexp メソッドで Regexp オブジェクトに変換しようと 試みます。

obj を to_regexp メソッドで Regexp オブジェクトに変換しようと
試みます。

変換に成功した場合はそれを返し、失敗時には nil を返します。

//emlist[例][ruby]{
Regexp.try_convert(/re/) # => /re/
Regexp.try_convert("re") # => nil
//}