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
Converts a character string in XML format into a standard character string.
Example
// Convert a character string in XML format
// into a character string in ANSI format
sAnsiString is string
sAnsiString = XMLToText("X is > than Y")
// sAnsiString contains "X is > than Y"
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppJavaUser code (UMC)PHP
MyDoc is string
MyDoc = fLoadText("example.xml")
MyResult is string
i is int = 1
MyResult = XMLExtractString(MyDoc, "NAME", i)
WHILE MyResult <> ""
Trace(MyResult)
i = i + 1
MyResult = XMLToText(XMLExtractString(MyDoc, "NAME", i))
END
// In the trace, you can see:
// turnips
// shallot
Syntax
<Result> = XMLToText(<String to convert>)
<Result>: Character string
Character string. The following reserved characters are automatically replaced:
  • &amp;amp; becomes &amp;
  • &amp;apos; becomes '
  • &amp;gt; becomes >
  • &amp;lt; becomes <
  • &amp;quot; becomes "
<String to convert>: Character string
Character string in XML format to convert.
Remarks
To extract a section of XML code found in an XML tag, use XMLExtractString.
Business / UI classification: Business Logic
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