Ruby 字符串 capitalize() 方法
capitalize 是Ruby中的一个字符串类方法,用于返回一个给定字符串的副本,将其第一个字符转换成大写,其余的转换成小写。
语法: 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