XSLT unparsed-entity-uri() Function | Tutorial
Tutorial -- Learning is not just about technology, but also about dreams!
- Home
- HTML
- JavaScript
- CSS
- Vue
- React
- Python3
- Java
- C
- C++
- C#
- AI
- Go
- SQL
- Linux
- VS Code
- Bootstrap
- Git
- Local Bookmarks
XSLT Tutorial
XSLT Tutorial XSL Language XSLT Introduction XSLT Browsers XSLT Transformation <a href="#" title="XSLT Element">XSLT <template> <a href="#" title="XSLT Element">XSLT <value-of> <a href="#" title="XSLT Element">XSLT <for-each> <a href="#" title="XSLT Element">XSLT <sort> <a href="#" title="XSLT Element">XSLT <if> <a href="#" title="XSLT Element">XSLT <choose> <a href="#" title="XSLT Element">XSLT Apply XSLT Client-side XSLT Server-side XSLT Edit XML XML Editors XSLT Summary XSLT Examples XSLT Elements XSLT Functions XSLT Transformation Tool
Explore Further
- Web Browsers
- Scripting
- Web Design & Development
- Programming
- Programming Languages
- Web Services
- Web Service
- Software
- Computer Science
- Development Tools
XSLT unparsed-entity-uri() Function
Complete XSLT Function Reference
Definition and Usage
The unparsed-entity-uri() function returns the URI of an unparsed entity. The entity name must match the parameter passed. If the entity is defined, it returns the URI string of the unparsed entity. Otherwise, it returns an empty string.
If the DTD contains the following declaration:
<!ENTITY pic SYSTEM "http://www.w3cschool.cc/picture.jpg" NDATA JPEG>
the expression:
unparsed-entity-uri('pic')
will return the URI of the file "picture.jpg".
Syntax
string unparsed-entity-uri(string)
Parameters
| Parameter | Description |
|---|---|
| string | Required. Specifies the name of the unparsed entity. |
YouTip