我有一個嵌套的XML標記,需要在產品XML追加PF的外部ID Perl的XML編輯多註冊標籤嵌套
輸入XML:
<Products>
<Product>
<ExternalId>317851</ExternalId>
</Product>
<Product>
<ExternalId>316232</ExternalId>
</Product>
<Product>
<ExternalId>13472</ExternalId>
</Product>
</Products>
所需的輸出結果:
<Products>
<Product>
<ExternalId>PF317851</ExternalId>
</Product>
<Product>
<ExternalId>PF316232</ExternalId>
</Product>
<Product>
<ExternalId>PF13472</ExternalId>
</Product>
</Products>
我嘗試過使用XML Simple。使用該模塊XML::Twig
關於在StackOverflow.com解析XML有很多問題,你有四處看看? – TLP
是的,我環顧四周,也測試了其中很少。 – user1970783
那麼也許你應該選擇最成功的那些測試,並詢問爲什麼它不起作用。 – TLP