Ruby 字符串 bytesize方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程