try_convert

Regexp.try_convert(obj) â re or nil
Class Public methods

Try to convert obj into a Regexp, using to_regexp method. Returns converted regexp or nil if obj cannot be converted for any reason.

1
2
3
4
5
6
7
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/
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.