我想对以下 xml 文件进行排序,以便 Tables 下的 Table 节点按其 Name 节点排序。我还希望 Columns 节点下的 Columns 成为它们的 Name 节点。
如何使用 ruby 和 nokogiri 做到这一点?
我希望这个例子能让你知道我希望它如何排序(它不包括整个文件,输入太多):
....
<Table>
<Name>Account</Name>
...
</Table>
<Table>
<Name>Item</Name>
</Table>
<Name>Order</Name>
<Table>
<Name>Product</Name>
...
<Column>
<Name>description</Name>
</Column>
<Column>
<Name>productid</Name>
</Column>
<Column>
<Name>productname</Name>
</Column>
...
</Table>
....
不幸的是,我无法上传杂乱无章的文件。所以我得把它贴在这里:
<Db xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tedsdb.com/schemas" xsi:schemaLocation="http://tedsdb.com/schemas/Db.xsd">
<Name>Store</Name>
<Version>3</Version>
<Catalog name="Store" version="3"></Catalog>
<Tables>
<Table>
<Name>Product</Name>
<Columns>
<Column>
<Name>productid</Name>
<Length>11</Length>
</Column>
<Column>
<Name>productname</Name>
<Length>25</Length>
</Column>
<Column>
<Name>description</Name>
<Length>250</Length>
<Properties>
<Property>
<Name>Store_NAME</Name>
<Value>desc</Value>
</Property>
</Properties>
</Column>
</Columns>
</Table>
<Table>
<Name>Order</Name>
<Columns>
<Column>
<Name>orderid</Name>
<Length>11</Length>
</Column>
<Column>
<Name>userid</Name>
<Length>11</Length>
</Column>
<Column>
<Name>orderdate</Name>
<Properties>
<Property>
<Name>NAME_IS_KEYWORD</Name>
<Value>desc_</Value>
</Property>
<Property>
<Name>Store_NAME</Name>
<Value>desc</Value>
</Property>
</Properties>
</Column>
</Columns>
<Key>
<Name>Order_PK</Name>
<Type>PRIMARY</Type>
<ColumnNames>
<Name>topid</Name>
</ColumnNames>
</Key>
</Table>
<Table>
<Name>Item</Name>
<Columns>
<Column>
<Name>itemid</Name>
<Length>11</Length>
</Column>
<Column>
<Name>itemname</Name>
<Length>250</Length>
</Column>
</Columns>
<Key>
<Name>Product_PK</Name>
<Type>PRIMARY</Type>
<ColumnNames>
<Name>topid</Name>
</ColumnNames>
</Key>
</Table>
<Table>
<Name>Account</Name>
<Columns>
<Column>
<Name>accountid</Name>
<Length>11</Length>
</Column>
<Column>
<Name>accountname</Name>
<Length>250</Length>
</Column>
</Columns>
<Key>
<Name>Product_PK</Name>
<Type>PRIMARY</Type>
<ColumnNames>
<Name>topid</Name>
</ColumnNames>
</Key>
</Table>
</Tables>
<Links>
<Link>
<Name>Accounts.orders.link</Name>
</Link>
</Links>
</Db>
尝试提出答案后,我尝试了以下代码。我在 Windows 7 上使用 aptana studio。变量doc不为空,实际上有加载的文件,但doc.at(//Tables)返回 nil,因此它从那里失败:
require "rubygems"
require "nokogiri"
f = File.open("test.xml")
doc = Nokogiri::XML(f)
f.close
tables = doc.at('//Tables');
tables.search('./Table').each do |t|
columns = t.at('//Columns')
columns.search('./Column').sort_by { |l| l.at('Name').text }.each do |col|
columns << col
end
end
puts doc.to_xml