您好我正在尝试对产品及其属性进行排序,但问题是属性的标题不是基于产品的名称和描述。所以例如我有:
Product id | attribute 1 name | attribute 1 desc | attribute 2 name | attribute 2 desc
1001 | screen size | 15" | DCR | 10,000:1
1002 | DCR | 200,000:1 | Widescreen | yes
这一行一直持续到产品有多少属性。
我需要的是会吐出的东西:
Product id, attribute 1 name, attribute 1 desc
Product id, attribute 2 name, attribute 2 desc
所以它看起来像这样:
1001, screen size, 15"
1001, DCR, 10,000:1
1002, DCR, 200,000:1
1002, widescreen, yes
有谁知道对这些信息进行排序的最佳方法是什么?
我一直在尝试一些 excel vba 脚本,但我想知道是否有办法用 ruby 来做这件事,因为这就是我现在正在学习的东西,这将是一个很好的现实世界的例子来深入研究 ruby。