I know I can do this::
<xsl:if test="ms:Person/ms:Name/@ms:first">
<xsl:if test="ms:Person/ms:Name/@ms:last">
</xsl:if>
</xsl:if>
BUT I would like to do this::
<xsl:if test="ms:Person/ms:Name/@ms:first" or test="ms:Person/ms:Name/@ms:last">
Is there a way to user and/or operators
I am transforming an XML doc from Schema A to Schema B. These are two established standards, Schema A being newer. Schema A actually has more built in elements and can house more detailed information than Schema B, which is fine. THey try to describe the same thing. however, to not lose data...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.