Posts Tagged: XML
-
Aug 27, 2009
No CommentsBasics of XSLT — Part 5
Like other programming languages, XSLT also has the some built-in functions support. There are some functions available in XSLT for string values, numeric values, date and time comparison, node manipulations and more. List of Functions in XSLT: The list of functions which is available in XSLT is given below in category wise. The following functions that can be...
-
Aug 17, 2009
No CommentsBasics of XSLT — Part 4
In the previous article we have discussed the concept of variable declarations and parameters passing techniques to the templates..etc., Now in this article we will discuss the formatting of numbers and strings. There are two elements <xsl:number>, <xsl:decimal-format> which are used to format the numbers and convert them into strings. The <xsl:number> Element: The main purpose of this...
-
Aug 11, 2009
No CommentsBasics of XSLT — Part 3
In the previous articles we have covered the some basic elements, which will help us for basic XML, XSLT transformation.In this article we will discuss some more elements which will help us to declare the variables, parameters, calling templates. The <xsl:variable> and <xsl:copy-of> elements: <xsl:variable> is used to declare the variables in XSLT. by using this element...
-
Aug 05, 2009
No CommentsBasics of XSLT – Part 2
In the previous article we have covered the basic elements like <xsl:for-each> ,<xsl:value-of> ,<xsl:if> ,<xsl:template>,<xsl:sort> ..etc., these elements are very helpful to create basic level XML, XSLT transformations. Now we are moving to bit step high and we will cover some more elements which are help full in real time scenarios. The element<xsl:attribute> : The element <xsl:attribute> is...