Regexp#match():force_encoding?()是Regexp類方法,該方法將正則表達式與字符串匹配,並指定字符串在字符串中的位置以開始搜索。
用法:Regexp.match()
參數:正則表達式值
返回:匹配字符串後的正則表達式。
示例1:
# Ruby code for Regexp.match() method
# declaring Regexp value
reg_a = /a/
# declaring Regexp value
reg_b = /geeks/
# declaring Regexp value
reg_c = /a/
# match method
puts "Regexp match form : #{reg_a.match("abcd")}\n\n"
puts "Regexp match form : #{reg_b.match("geeksforgeeks")}\n\n"
puts "Regexp match form : #{reg_c.match("playway")}\n\n"
輸出:
Regexp match form : a Regexp match form : geeks Regexp match form : a
示例2:
# Ruby code for Regexp.match() method
# declaring Regexp value
reg_a = /geeks/
# declaring Regexp value
reg_b = /problem/
# declaring Regexp value
reg_c = /code/
# match method
puts "Regexp match form : #{reg_a.match("geeksforgeeks")}\n\n"
puts "Regexp match form : #{reg_b.match("geeksforgeeks")}\n\n"
puts "Regexp match form : #{reg_c.match("codeer")}\n\n"
輸出:
Regexp match form : geeks Regexp match form : Regexp match form : code
相關用法
- Ruby StringScanner match?用法及代碼示例
- Ruby Symbol match用法及代碼示例
- Scala Regexp ===()用法及代碼示例
- Scala Regexp =~()用法及代碼示例
- Scala Regexp ==()用法及代碼示例
- Ruby Regexp new()用法及代碼示例
- Ruby Regexp eql?()用法及代碼示例
- Ruby Regexp compile()用法及代碼示例
- Ruby Regexp options()用法及代碼示例
- Ruby Regexp quote()用法及代碼示例
- Ruby Regexp named_captures()用法及代碼示例
- Ruby Regexp source()用法及代碼示例
- Ruby Regexp names()用法及代碼示例
- Ruby Regexp escape()用法及代碼示例
- Ruby Regexp casefold?()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Regexp match() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。