| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Type: XSL
#Views: 524
Category: Article
|
|
|
XSLT is a W3C specification (www.w3.org/TR/xslt), a declarative language, designed to transform a well-formed XML document into any other text format, such as XML, HTML, WML, SVG, and so on.
XSLT supports the notion of "separating content from the presentation". Once content/data is available in XML document, various XSLT stylesheets can be used with the same XML document, to generate different outputs. XSLT processor then can be used to apply the XSLT stylesheet on the XML document. Popular XSLT processors include MSXML from Microsoft, Saxon by Michael Kay, Xalan by Apache, and Oracle XSLT processor.
In this five-part article series, we'll present examples that illustrate some common XSLT tasks such as transforming XML, sorting, generating nodes, conditions and looping, recursion, and so on.
In this first part, we'll see examples of transforming XML and sorting.
|
|
Type: XSL
#Views: 573
Category: Article
|
|
|
|
|