当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Regexp.try_convert用法及代码示例


本文简要介绍ruby语言中 Regexp.try_convert 的用法。

用法

try_convert(obj) → re or nil

尝试使用 to_regexp 方法将 obj 转换为 Regexp 。如果 obj 由于任何原因无法转换,则返回转换后的正则表达式或 nil。

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

o = Object.new
Regexp.try_convert(o)            #=> nil
def o.to_regexp() /foo/ end
Regexp.try_convert(o)            #=> /foo/

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Regexp.try_convert。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。