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


Ruby Regexp hash()用法及代码示例


Regexp#force_encoding?():force_encoding?()是Regexp类方法,该方法基于此正则表达式的文本和选项返回哈希。

用法:Regexp.hash()

参数:正则表达式值


返回:基于此正则表达式的文本和选项的哈希。

示例1:

# Ruby code for Regexp.hash() method 
  
# declaring Regexp value 
reg_a = /a/ 
  
# declaring Regexp value 
reg_b = /geeks/ 
  
# declaring Regexp value 
reg_c = /a/ 
  
  
#  hash method 
puts "Regexp hash form : #{reg_a.hash}\n\n"
  
puts "Regexp hash form : #{reg_b.hash}\n\n"
  
puts "Regexp hash form : #{reg_c.hash}\n\n"

输出:

Regexp hash form : -1704400854280844509

Regexp hash form : -3140932202593119845

Regexp hash form : -1704400854280844509

示例2:

# Ruby code for Regexp.hash() method 
  
# declaring Regexp value 
reg_a = /geeks/ 
  
# declaring Regexp value 
reg_b = /problem/ 
  
# declaring Regexp value 
reg_c = /code/ 
  
  
#  hash method 
puts "Regexp hash form : #{reg_a.hash}\n\n"
  
puts "Regexp hash form : #{reg_b.hash}\n\n"
  
puts "Regexp hash form : #{reg_c.hash}\n\n"

输出:

Regexp hash form : -429624664738525607

Regexp hash form : -2782281071524532422

Regexp hash form : -3545766771755419715



相关用法


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