Ruby 字符串 length方法
length 是Ruby中的一个字符串类方法,用于查找给定字符串的字符长度。
语法: str.length
参数: 这里,str是要计算其长度的字符串。
返回: 它将返回str的字符长度。
例子 1 :
# Ruby program to demonstrate
# the length method
# Taking a string and
# using the method
puts "GFG".length
puts "geeksforgeeks".length
输出
3
13
例2 :
# Ruby program to demonstrate
# the length method
# Taking a string and
# using the method
puts "g4g".length
puts "ruby string".length
输出
3
11