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


Ruby String capitalize!用法及代碼示例


大寫!是Ruby中的String類方法,該方法用於通過將給定字符串的第一個字符轉換為大寫並將其餘字符轉換為小寫來返回給定字符串的副本。大寫和大寫之間的唯一區別!方法是大寫!如果未進行任何更改,則方法將返回nil。

用法:str.capitalize!

參數:在這裏,str是要轉換的給定字符串。


返回:字符串的副本,第一個字符為大寫字母,其餘為小寫字母。如果未進行任何更改,則為零。

範例1:

# Ruby program to demonstrate 
# the capitalize! method 
  
# Taking the string and 
# using the method 
puts "ruby".capitalize!() 
puts "gfg".capitalize!()

輸出:

Ruby
Gfg

範例2:

# Ruby program to demonstrate 
# the capitalize! method 
  
# Taking a string  
# already in uppercase 
# it will not give any  
# output 
puts "Geeksforgeeks".capitalize!() 
  
puts "computer".capitalize!()

輸出:

Computer


相關用法


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