可以使用join方法将数组转化为字符串。join方法接受一个可选的参数作为分隔符,用于连接数组中的元素。下面是一个例子:
join
array = [1, 2, 3, 4, 5] string = array.join(", ") # 使用逗号和空格作为分隔符 puts string # 输出 "1, 2, 3, 4, 5"
在上面的例子中,join方法将数组中的元素连接起来,并使用逗号和空格作为分隔符。最终得到的字符串是"1, 2, 3, 4, 5"。