Just use this XPath 1.0 expression:
/*/*/w:p[not(substring-after(@pStyle,'Heading')
>=
substring-after(preceding-sibling::*[1]/@pStyle,'Heading')
)
]
A corresponding XPath 2.0 expression selecting the same set of elements is:
/*/*/w:p[1]
|
/*/*/w:p[position() ge 2]
[xs:integer(substring-after(@pStyle,'Heading'))
lt
xs:integer(substring-after(preceding-sibling::*[1]/@pStyle,'Heading'))
]
If you use XSLT 2.0, you can override the identity rule/template as follows:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:w="Undefined!!!">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match=
"w:p[xs:integer(substring-after(@pStyle,'Heading'))
ge
xs:integer(substring-after(preceding-sibling::*[1]/@pStyle,'Heading'))
]"/>
</xsl:stylesheet>
when applied on the provided XML document (fixed to be well-formed):
<w:document xmlns:w="Undefined!!!">
<w:body>
<w:p pStyle="Heading1">Para1</w:p>
<w:p pStyle="Heading2">Para2</w:p>
<w:p pStyle="Heading3">Para3</w:p>
<w:p pStyle="Heading4">Para4</w:p>
<w:p pStyle="Heading1">Para5</w:p>
<w:p pStyle="Heading3">Para6</w:p>
<w:p pStyle="Heading4">Para7</w:p>
<w:p pStyle="Heading2">Para8</w:p>
<w:p pStyle="Heading3">Para9</w:p>
<w:p pStyle="Heading1">Para10</w:p>
</w:body>
</w:document>
the wanted, correct result is produced:
<w:document xmlns:w="Undefined!!!">
<w:body>
<w:p pStyle="Heading1">Para1</w:p>
<w:p pStyle="Heading1">Para5</w:p>
<w:p pStyle="Heading2">Para8</w:p>
<w:p pStyle="Heading1">Para10</w:p>
</w:body>
</w:document>
The corresponding XSLT 1.0 solution with overriding the identity rule is slightly simpler due to XPath 1.0 lacking strong typing:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:w="Undefined!!!">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match=
"w:p[substring-after(@pStyle,'Heading')
>=
substring-after(preceding-sibling::*[1]/@pStyle,'Heading')
]"/>
</xsl:stylesheet>
Or, you can simply use the expressions from the start of this solution:
XSLT 2.0:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:w="Undefined!!!" exclude-result-prefixes="xs">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="/">
<w:document xmlns:w="Undefined!!!">
<w:body>
<xsl:copy-of select=
"/*/*/w:p[1]
|
/*/*/w:p[position() ge 2]
[xs:integer(substring-after(@pStyle,'Heading'))
lt
xs:integer(substring-after(preceding-sibling::*[1]/@pStyle,'Heading'))
]
"/>
</w:body>
</w:document>
</xsl:template>
</xsl:stylesheet>
XSLT 1.0:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:w="Undefined!!!">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="/">
<w:document xmlns:w="Undefined!!!">
<w:body>
<xsl:copy-of select=
"/*/*/w:p
[not(substring-after(@pStyle,'Heading')
>=
substring-after(preceding-sibling::*[1]/@pStyle,'Heading')
)
]
"/>
</w:body>
</w:document>
</xsl:template>
</xsl:stylesheet>
All of the above three XSLT transformations produce the wanted, correct result.