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"/>
但我不能手工爲我所有的元素做這個。 是否有一個工具(獨立或擴展),增加了我需要的額外空間?
我很感激您的任何建議。這個問題正在驅動我的同事,我瘋了!