Ruby Regexp hash()函数

Ruby Regexp hash()函数

Regexp#force_encoding?() : force_encoding?() 是 Regexp 类的一个方法,它根据这个正则表达式的文本和选项返回散列值。

语法。Regexp.hash()

参数。Regexp值

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

例子 #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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程