Ruby 字符串 bytes方法 bytes 是Ruby中的一个字符串类方法,用于返回给定字符串的字节数组。 语法: str.bytes 参数: 这里,str是指定的字符串。 返回: 一个字节数组。 例子 1 : # Ruby program to demonstrate # the bytes method # Taking a string and # using the method puts "String".bytesRubyCopy 输出 83 116 114 105 110 103RubyCopy 例2 : # Ruby program to demonstrate # the bytes method # Taking a string and # using the method puts "ABCD".bytesRubyCopy 输出 65 66 67 68RubyCopy