配列をシリアル化し、文字列から逆シリアル化するにはどうすればよいですか?次のコードを試しましたが、実際には元の整数の配列を返しませんが、文字列の配列を返します。
x = [1,2,3].join(',') # maybe this is not the correct way to serialize to string?
=> '1,2,3'
x = x.split(',')
=> [ '1', '2', '3' ]
?を持たずに整数に戻す方法はあり.collect{ |x| x.to_i }
ますか?