Ruby 字符串 chars()方法 chars 是Ruby中的一个字符串类方法,用于返回str中的字符数组。 语法: str.chars 参数: 这里,str是给定的字符串 返回: 一个字符数组。 例子 1 : # Ruby program to demonstrate # the chars method # Taking a string and # using the method puts "Ruby String".chars() puts "Methods".chars() RubyCopy 输出 R u b y S t r i n g M e t h o d sRubyCopy 例2 : # Ruby program to demonstrate # the chars method # Taking a string and # using the method puts "GFG".chars() puts "G4G".chars() RubyCopy 输出 G F G G 4 GRubyCopy