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
相关用法
- Ruby String capitalize!用法及代码示例
- Ruby Symbol capitalize用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String chr用法及代码示例
- Ruby String hex用法及代码示例
- Ruby String insert用法及代码示例
- Ruby String each_str用法及代码示例
- Ruby String index用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String capitalize() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。