ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / XML file functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
TextToXML (Function)
In french: TexteVersXML
Converts a character string into a character string in XML format.
The reserved characters (">", "<", ...) are automatically converted according to the XML standard.
Example
// Convert a character string into a character string in XML format
sXMLString is string
sXMLString = TextToXML("the device is > than this one")
// sXMLString contains "The device is &amp;gt; than this one"
Syntax
<Result> = TextToXML(<String to convert>)
<Result>: Character string
Character string in XML format. The following reserved characters are automatically replaced:
  • & becomes &amp;
  • ' becomes &apos;
  • > becomes &gt;
  • < becomes &lt;
  • " becomes &quot;
<String to convert>: Character string
Character string to convert.
Component: wd290xml.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help