本文简要介绍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 Regexp.to_s用法及代码示例
- Ruby Regexp.eql?用法及代码示例
- Ruby Regexp.fixed_encoding?用法及代码示例
- Ruby Regexp.options用法及代码示例
- Ruby Regexp.inspect用法及代码示例
- Ruby Regexp.names用法及代码示例
- Ruby Regexp.rxp =~ str用法及代码示例
- Ruby Regexp.escape用法及代码示例
- Ruby Regexp.casefold?用法及代码示例
- Ruby Regexp.match用法及代码示例
- Ruby Regexp.rxp ===用法及代码示例
- Ruby Regexp.match?用法及代码示例
- Ruby Regexp.union用法及代码示例
- Ruby Regexp.rxp ==用法及代码示例
- Ruby Regexp.source用法及代码示例
- Ruby Regexp.new用法及代码示例
- Ruby Regexp.named_captures用法及代码示例
- Ruby Regexp.~ rxp用法及代码示例
- Ruby Regexp.last_match用法及代码示例
- Ruby Regexp named_captures()用法及代码示例
- Ruby Regexp to_s()用法及代码示例
- Ruby Regexp hash()用法及代码示例
- Ruby Regexp类用法及代码示例
- Ruby Regexp inspect()用法及代码示例
- Ruby Regexp source()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Regexp.try_convert。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。