Xml.xmldom.ExtractLocalName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ExtractLocalName(const AName: DOMString): DOMString;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall ExtractLocalName(const System::UnicodeString AName);

Properties

Type Visibility Source Unit Parent
function public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom Xml.xmldom


Description

Strips the namespace prefix, if present, from the tag name of an XML node.

Call ExtractLocalName to convert a full tag name for an XML node into the corresponding local name.

AName is the tag name to be converted.

ExtractLocalName returns the value of AName with any namespace prefix stripped away.

See Also