|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Variables
Sebastien Sahuc wrote: > I'll be direct : Is there a way to insert Variable on XML document ? You can use an entity. For example, declare the entity in your DTD: <!ENTITY myaddress "123 Main St"> and reference the entity in the body of your document: <merchant> <address>&myaddress;</address> ... </merchant> When the document is parsed, the parser replaces the entity with its value and what your application sees is: <merchant> <address>123 Main St</address> ... </merchant> The above shows an internal entity, which means that the entity value is stored in the document. The entity could also be external, meaning it is stored in any sort of an external resource. The simplest case is when it is stored in an external file, so your declaration might look like: <!ENTITY myaddress SYSTEM "addressfile.txt"> However, the system id doesn't need to point to a file -- it could also point to something like a CGI program to retrieve the entity from a database. -- Ron Bourret xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i... Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1 To (un)subscribe, mailto:majordomo@i... the following message; (un)subscribe xml-dev To subscribe to the digests, mailto:majordomo@i... the following message; subscribe xml-dev-digest List coordinator, Henry Rzepa (mailto:rzepa@i...)
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








