Ruby 字符串 bytes方法

Ruby 字符串 bytes方法

bytes 是Ruby中的一个字符串类方法,用于返回给定字符串的字节数组。

语法: str.bytes

参数: 这里,str是指定的字符串。

返回: 一个字节数组。

例子 1 :

# Ruby program to demonstrate
# the bytes method
     
# Taking a string and
# using the method
puts "String".bytes

输出

83
116
114
105
110
103

例2 :

     
# Ruby program to demonstrate
# the bytes method
     
# Taking a string and
# using the method
puts "ABCD".bytes

输出

65
66
67
68

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程