📜  红宝石 |字符串字节大小方法

📅  最后修改于: 2022-05-13 01:55:04.762000             🧑  作者: Mango

红宝石 |字符串字节大小方法

bytesize是 Ruby 中的 String 类方法,用于获取给定字符串的长度(以字节为单位)。

示例 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