【发布时间】:2011-10-06 03:00:06
【问题描述】:
我是一名尝试学习 MATLAB 的完整编程初学者。我想从一堆不同的 xml 文件中提取数值数据。数值数据项由标签 和 界定。如何在 MATLAB 中编写程序?
我的算法:
1. Open the folder
2. Look into each of 50 xml files, one at a time
3. Where the tag <HNB.1></HNB.1> exists, copy numerical contents between said tag and write results into a new file
4. The new file name given for step 3 should be the same as the initial file name read in Step 2, being appended with "_data extracted"
示例:
FileName = Stewart.xml
Contents = blah blah blah <HNB.1>2</HNB.1> blah blah
NewFileName = Stewart_data extracted.txt
Contents = 2
【问题讨论】: