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
相關用法
- Scala Regexp =~()用法及代碼示例
- Ruby Regexp new()用法及代碼示例
- Scala Regexp ==()用法及代碼示例
- Ruby Regexp eql?()用法及代碼示例
- Scala Regexp ===()用法及代碼示例
- Ruby Regexp escape()用法及代碼示例
- Ruby Regexp named_captures()用法及代碼示例
- Ruby Regexp compile()用法及代碼示例
- Ruby Regexp casefold?()用法及代碼示例
- Ruby Regexp quote()用法及代碼示例
- Ruby Regexp encoding()用法及代碼示例
- Ruby Regexp to_s()用法及代碼示例
- Ruby Regexp match()用法及代碼示例
- Ruby Regexp fixed_encoding?()用法及代碼示例
- Ruby Regexp source()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Regexp hash() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。