Regexp#fixed_encoding?():fixed_encoding?()是Regexp類方法,該方法檢查正則表達式是否適用於具有任何ASCII兼容編碼的字符串。
用法:Regexp.force_encoding??()
參數:正則表達式值
返回:true-如果rxp適用於具有任何ASCII兼容編碼的字符串,否則返回false
範例1:
# Ruby code for Regexp.fixed_encoding?() method
# declaring Regexp value
reg_a = /a/
# declaring Regexp value
reg_b = /geeks/
# declaring Regexp value
reg_c = /a/
# fixed_encoding? method
puts "Regexp fixed_encoding? form:#{reg_a.fixed_encoding?}\n\n"
puts "Regexp fixed_encoding? form:#{reg_b.fixed_encoding?}\n\n"
puts "Regexp fixed_encoding? form:#{reg_c.fixed_encoding?}\n\n"
輸出:
Regexp fixed_encoding? form:false Regexp fixed_encoding? form:false Regexp fixed_encoding? form:false
範例2:
# Ruby code for Regexp.fixed_encoding?() method
# declaring Regexp value
reg_a = /geeks/
# declaring Regexp value
reg_b = /problem/
# declaring Regexp value
reg_c = /code/
# fixed_encoding? method
puts "Regexp fixed_encoding? form:#{reg_a.fixed_encoding?}\n\n"
puts "Regexp fixed_encoding? form:#{reg_b.fixed_encoding?}\n\n"
puts "Regexp fixed_encoding? form:#{reg_c.fixed_encoding?}\n\n"
輸出:
Regexp fixed_encoding? form:false Regexp fixed_encoding? form:false Regexp fixed_encoding? form:false
相關用法
- Scala Regexp ===()用法及代碼示例
- Ruby Regexp new()用法及代碼示例
- Scala Regexp ==()用法及代碼示例
- Scala Regexp =~()用法及代碼示例
- Ruby Regexp eql?()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Regexp fixed_encoding?() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。