2017-10-11 150 views
0

我已經得到了很多的XML文件中有看起來像這樣的元素Visual Studio解決方案:格式XML元素屬性爲列

<myelem id="0123" name="My Element" color="red" position="top"/> 
<myelem id="4567" name="Another Element" color="blue" position="middle"/> 
<myelem id="89AB" name="A Different Element" color="green" position="bottom"/> 

我有幾萬列出一個這些元素接着在XML文件中。它們由電子表格生成。由於屬性值長度不同,元素難以閱讀。我一直在屬性之間添加空格,以製作一個易於閱讀的表格形式。

<myelem id="0123" name="My Element"   color="red" position="top"/> 
<myelem id="4567" name="Another Element"  color="blue" position="middle"/> 
<myelem id="89AB" name="A Different Element" color="green" position="bottom"/> 

但我不能手工爲我所有的元素做這個。 是否有一個工具(獨立或擴展),增加了我需要的額外空間?

我很感激您的任何建議。這個問題正在驅動我的同事,我瘋了!

回答

0

很難證明不存在,但我不知道有任何這樣的工具。

我自己有一兩個文件,我保持這種格式,所以我認識到這個要求。