我需要帮助来搜索多个 xml 文件中的多个字符串,然后将结果输出到 csv 或 txt 文件中。xml 文件都是相同的格式。
目前我只能使用以下方法从单个 xml 中提取单个字符串:
$xml = [xml](Get-Content 'C:\App\test.xml')
$xml.application.stage1.c_firstname
返回名称,我需要能够返回c_surname
并将c_userid
其输出到多个 xml 上的 csv 文件(理想情况下或文本)
示例 XML 文件:
<?xml version="1.0" encoding="UTF-8" ?>
<application>
<stage1>
<c_product_name>Test</c_product_name>
<c_firstname>Bill</c_firstname>
<c_surname>Gates</c_surname>
</stage1>
<stage5>
<c_number>12345TEST</c_number>
</stage5>
</application>