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


Ruby Regexp to_s()用法及代碼示例


Regexp#to_s():to_s()是Regexp類方法,該方法返回包含具有相同語義的正則表達式的字符串。

用法:Regexp.to_s()

參數:正則表達式值


返回:包含具有相同語義的正則表達式的字符串。

示例1:

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

輸出:

Regexp to_s form : (?-mix:a)

Regexp to_s form : (?-mix:\xa1\xa2)

示例2:

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

輸出:

Regexp to_s form : (?ix-m:geeks)

Regexp to_s form : (?-mix:(.)(.))


相關用法


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