當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。