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


Ruby String ascii_only?用法及代碼示例


ascii_only?是Ruby中的String類方法,用於檢查僅包含ASCII字符的字符串。

用法: str.ascii_only?

參數:這裏str是要檢查的字符串。


返回:對於僅包含ASCII字符的字符串為True,否則返回false。

範例1:

#ruby 2.3.1  
     
# Ruby program to demonstrate 
# the ascii_only? method 
     
# Taking a string and 
# using the method 
puts "95ruby2364127".ascii_only? 
  
puts "\u{1234}".ascii_only?

輸出:

true
false

範例2:

#ruby 2.3.1  
     
# Ruby program to demonstrate 
# the ascii_only? method 
     
# Taking a string and 
# using the method 
puts "STRING".ascii_only? 
  
puts "\u{7894}".force_encoding("UTF-8").ascii_only?

輸出:

true
false


相關用法


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