我如何使用一些bash / shell脚本转换此输入
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<runJobReturn xmlns="http://xml.org" xmlns:ns1="http://xml.org" xsi:type="ns1:runJobReturn">
<ns1:item xsi:type="ns1:ArrayOf_xsd_string">
<ns1:item xsi:type="xsd:string">15-02-2013</ns1:item>
<ns1:item xsi:type="xsd:string">Benjamin</ns1:item>
<ns1:item xsi:type="xsd:string">MASSY</ns1:item>
</ns1:item>
<ns1:item xsi:type="ns1:ArrayOf_xsd_string">
<ns1:item xsi:type="xsd:string">15-02-2013</ns1:item>
<ns1:item xsi:type="xsd:string">Ronald</ns1:item>
<ns1:item xsi:type="xsd:string">MASSY</ns1:item>
</ns1:item>
<ns1:item xsi:type="ns1:ArrayOf_xsd_string">
<ns1:item xsi:type="xsd:string">15-02-2013</ns1:item>
<ns1:item xsi:type="xsd:string">Zachary</ns1:item>
<ns1:item xsi:type="xsd:string">MASSY</ns1:item>
</ns1:item>
<ns1:item xsi:type="ns1:ArrayOf_xsd_string">
<ns1:item xsi:type="xsd:string">12</ns1:item>
<ns1:item xsi:type="xsd:string">13</ns1:item>
</ns1:item>
<ns1:item xsi:type="ns1:ArrayOf_xsd_string">
<ns1:item xsi:type="xsd:string">12</ns1:item>
<ns1:item xsi:type="xsd:string">13</ns1:item>
</ns1:item>
</runJobReturn>
</soapenv:Body>
到此输出:
15-02-2013|Benjamin|MASSY
15-02-2013|Ronald|MASSY
15-02-2013|Zachary|MASSY
12|13
12|13
输入来自curl。我试过用sed: echo $ INP | tr -d“\ n”| sed -e's /&lt; [^&gt;] *&gt; / \ n / g' 但是在输出中仍然会在值之间增加新的行
答案 0 :(得分:3)
你真的不应该使用regex to parse XML。在bash中运行XSLT同样容易。
我建议运行从Saxon-HE(XSLT 2.0)运行Java版command line或运行XMLStarlet(XSLT 1.0)。
示例:
XSLT 2.0 (撒克逊人)
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns1="http://xml.org">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:template match="ns1:runJobReturn/ns1:item">
<xsl:value-of select="ns1:item" separator="|"/>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>
XSLT 1.0 (XMLStarlet,Saxon,Xalan等)
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns1="http://xml.org">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:template match="ns1:runJobReturn/ns1:item">
<xsl:apply-templates select="ns1:item"/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="ns1:item">
<xsl:if test="not(position()=1)">
<xsl:text>|</xsl:text>
</xsl:if>
<xsl:value-of select="."/>
</xsl:template>
</xsl:stylesheet>
应用于输入XML的这些样式表中的任何一个都将产生您想要的输出:
15-02-2013|Benjamin|MASSY
15-02-2013|Ronald|MASSY
15-02-2013|Zachary|MASSY
12|13
12|13
答案 1 :(得分:2)
这是一个快速的awk单行:
echo $INP |awk -F '[<>]' '$2 ~ "xsd:string" {row = row "|" $3} $2 == "/ns1:item" {print substr(row, 2) ; row = ""}'