singleton method Regexp.try_convert

try_convert(obj) -> Regexp | nil[permalink][rdoc][edit]

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

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



Regexp.try_convert(/re/)      # => /re/
Regexp.try_convert("re")      # => nil