Regexp#eql?():eql?()是一個Regexp類方法,它匹配兩個正則表達式中的字符。
用法:Regexp.eql?()
參數:正則表達式值
返回:true-如果兩個正則表達式與字符串匹配,則返回false
範例1:
# Ruby code for Regexp.eql?() method
# declaring Regexp value
reg_a = /a/
# declaring Regexp value
reg_b = /geeks/
# declaring Regexp value
reg_c = /a/
# eql? method
puts "Regexp eql? form:#{reg_a.eql? "happy"}\n\n"
puts "Regexp eql? form:#{reg_b.eql?reg_b}\n\n"
puts "Regexp eql? form:#{reg_c.eql? "goal"}\n\n"
輸出:
Regexp eql? form:false Regexp eql? form:true Regexp eql? form:false
範例2:
# Ruby code for Regexp.eql?() method
# declaring Regexp value
reg_a = /geeks/
# declaring Regexp value
reg_b = /problem/
# declaring Regexp value
reg_c = /code/
# eql? method
puts "Regexp eql? form:#{reg_a.eql? "happy"}\n\n"
puts "Regexp eql? form:#{reg_b.eql?reg_b}\n\n"
puts "Regexp eql? form:#{reg_c.eql? "goal"}\n\n"
輸出:
Regexp eql? form:false Regexp eql? form:true Regexp eql? form:false
相關用法
- Scala Regexp ===()用法及代碼示例
- Ruby Regexp new()用法及代碼示例
- Scala Regexp ==()用法及代碼示例
- Scala Regexp =~()用法及代碼示例
- Ruby Regexp compile()用法及代碼示例
- Ruby Regexp to_s()用法及代碼示例
- Ruby Regexp escape()用法及代碼示例
- Ruby Regexp options()用法及代碼示例
- Ruby Regexp source()用法及代碼示例
- Ruby Regexp match()用法及代碼示例
- Ruby Regexp named_captures()用法及代碼示例
- Ruby Regexp names()用法及代碼示例
- Ruby Regexp quote()用法及代碼示例
- Ruby Regexp encoding()用法及代碼示例
- Ruby Regexp casefold?()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Regexp eql?() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。