About 20,200,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 · <xsl:if test="expression"> output if the expression is true </xsl:if> Use xsl:choose for cases where you have some alternate output when the expressions is false.

  3. 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 &lt;xsl:when test="(//TestInput='XYZA') OR (//TestInput='XYZB') OR …

  4. 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.

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

    Apr 11, 2009 · What about the Wikipedia definition? XSL Formatting Objects, or XSL-FO, is a markup language for XML document formatting which is most often used to generate PDFs. …

  6. How do I generate a comma-separated list with XSLT/XPath?

    Nov 12, 2016 · 15 For an XSLT 2.0 option, you can use the separator attribute on xsl:value-of. This xsl:value-of:

  7. 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.

  8. Check if a string is null or empty in XSLT - Stack Overflow

    May 5, 2009 · How can I check if a value is null or empty with XSL? For example, if categoryName is empty? I'm using a when choosing construct. For example: …

  9. XSL if: test with multiple test conditions - Stack Overflow

    Jan 27, 2015 · I am trying to create a xsl condition to check if combinations of node are empty or not. I have tried below conditions but they do not work, does anyone have an idea as to how to …

  10. 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, 7 months ago Modified 5 years, 6 months ago Viewed 212k times