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