About 10,300,000 results
Open links in new tab
  1. How to implement if-else statement in XSLT? - Stack Overflow

    Nov 29, 2012 · Learn how to implement if-else statements in XSLT using templates and conditional expressions for efficient XML transformations.

  2. when to use xsl:if and when to use xsl:choose/xsl:when in XSLT

    Sep 11, 2013 · an xsl:choose will always select exactly one of the available xsl:when or xsl:otherwise The children of the element are tested, in order from top to bottom, until a test …

  3. Producing a new line in XSLT - Stack Overflow

    Apr 16, 2015 · Learn how to produce a new line in XSLT with practical examples and expert advice on Stack Overflow.

  4. What's the difference between XSLT and XSL-FO? - Stack Overflow

    Apr 11, 2009 · XSL Formatting Objects, or XSL-FO, is a markup language for XML document formatting which is most often used to generate PDFs. XSL-FO is part of XSL, a set of W3C …

  5. Can you put two conditions in an xslt test attribute?

    Nov 25, 2008 · Learn how to use multiple conditions in an XSLT test attribute effectively with examples and expert advice on Stack Overflow.

  6. Boolean operator OR in where clause using XSLT - Stack Overflow

    Jul 23, 2012 · Hello folks, I am trying to set a fixed value to a tag in XML on comparing to a value in condition. such as <xsl:when test="(//TestInput='XYZA') OR (//TestInput='XYZB') OR …

  7. How to insert in XSLT - Stack Overflow

    Learn how to insert non-breaking spaces in XSLT with practical examples and solutions for efficient XML transformations.

  8. xslt - Conditional statements in xsl - Stack Overflow

    Dec 12, 2013 · Writing templates that match specific nodes and using <xsl:apply-templates> to make the XSLT processor choose the appropriate ones is superior to writing complex <xsl:if> …

  9. How do I specify "not equals to" when comparing strings in an …

    How do I specify "not equals to" when comparing strings in an XSLT <xsl:if>? Asked 13 years, 5 months ago Modified 5 years, 5 months ago Viewed 211k times

  10. xml - xsl: how to split strings? - Stack Overflow

    Jan 30, 2011 · The plain XSL selector is <xsl:value-of select="address"/> and I would like to modify this XSLT fragment to split on semicolon. update: Apparently the answer involves the …