pc:WriteFile |
Writes text to a text file, overwriting any existing file. Use pc:AppendFile if you want to add the text to the existing file instead of overwriting it. Syntax 1
Syntax 2
The required filepath points to the location where the file must be written. The text to be written must be expressed either as content (Syntax 1) or in a select attribute (Syntax 2). If you pass disable-output-escaping="yes", special XML characters in the output will not be escaped. Use this option when you are writing XML that you want to process further (Example 2).
Example 1
Example 2 In this example the TRAVEL.xml inputfile is picked up and converted to flat text, each occurrence (whether in element names, attributes names, or text nodes) of ITALIA is translated to ITALIA and each occurrence of GERMANY to DEUTSCHLAND, and the result is written to the TRAVEL.replaced.xml outputfile. disable-output-escaping="yes" causes special XML characters in the output to be preserved instead of being converted to entity references such as >.
See also |