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


Scala Regexp ===()用法及代碼示例


Regexp#===():===() 是 Regexp 類方法,用於比較兩個正則表達式的相等性。

用法:Regexp.===()

參數:正則表達式值

Return: true - 如果兩個正則表達式相等,否則返回 false

示例#1:


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

輸出:

Regexp === form : false

Regexp === form : false

Regexp === form : false

示例#2:


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

輸出:

Regexp === form : false

Regexp === form : false

Regexp === form : false


相關用法


注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Regexp ===() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。