我想对以下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不是null,实际上有加载的文件,但是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
要对节点进行排序,只需按您希望的顺序将它们重新插入父节点:
tables = doc.at('//Tables')
tables.search('./Table').sort_by{|t| t.at('Name').text}.each do |table|
tables << table
end