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


Ruby String capitalize()用法及代碼示例


capitalize是Ruby中的String類方法,用於通過將給定字符串的第一個字符轉換為大寫並將其餘字符轉換為小寫來返回給定字符串的副本。

用法: str.capitalize

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


返回值:字符串的副本,第一個字符為大寫字母,其餘為小寫字母。

示例1:

# Ruby program to demonstrate 
# the capitalize method 
  
# Taking the string and 
# using the method 
puts "geeks".capitalize() 
puts "hey".capitalize()

輸出:

Geeks
Hey

示例2:

# Ruby program to demonstrate 
# the capitalize method 
  
# Taking a string already in 
# uppercase and using the  
# method will give the same 
# string 
puts "Computer".capitalize() 
puts "science".capitalize()

輸出:

Computer
Science


相關用法


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