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