Ruby 字符串 bytesize方法
bytesize 是Ruby中的一个字符串类方法,用于获取给定字符串的字节长度。
语法: str.bytesize
参数: 这里,str是给定的字符串。
返回: 该方法以字节为单位返回str的长度。
例子 1 :
# Ruby program to demonstrate
# the bytesize method
# Taking a string and
# using the method
puts "GeeksforGeeks".bytesize
puts "Ruby".bytesize
输出
13
4
例2 :
# Ruby program to demonstrate
# the bytesize method
# Taking a string and
# using the method
puts "String Class".bytesize
puts "Methods".bytesize
输出
12
7