xslt
Transform XML document using XSLT engine
Syntax
result = xslt(source,style,dest)
[result,transformer] = xslt(___)
xslt(___,'-web')
Description
result = xslt(source,style,dest)
transforms an XML
document using a stylesheet and returns the resulting document's URL. The function uses
these inputs, the first of which is required:
source
is the filename or URL of the source XML file specified as a character vector or string scalar.source
can also specify a DOM node.style
is the filename or URL of an XSL stylesheet specified as a character vector or string scalar.dest
is the filename or URL of the desired output document specified as a character vector or string scalar. Ifdest
is absent or empty, the function uses a temporary filename. Ifdest
is'-tostring'
, the function returns the output document as a character vector.
[result,transformer] = xslt(___)
returns
a JAXP transformer object based on the provided XSL style file. The JAXP transformer
object can be passed to subsequent xslt
calls as
transformer
.
xslt(___,'-web')
displays the resulting
document in the MATLAB® web browser.
Examples
This example converts the file info.xml
using the stylesheet
info.xsl
, writing the output to the file
info.html
. It launches the resulting HTML file in the MATLAB web browser.
xslt('info.xml', 'info.xsl', 'info.html', '-web')
Tips
MATLAB uses the Saxon XSLT processor, version 6.5.5, which supports XSLT 1.0 expressions. For more information, see About SAXON.
For additional information on writing XSL stylesheets, see the World Wide Web Consortium (W3C®) web site, The Extensible Stylesheet Language Family (XSL).
Version History
Introduced before R2006a