XML/Input: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 489:
=={{header|Delphi}}==
<lang Delphi>
//You need to use these units
uses
Dialogs,
Line 494 ⟶ 495:
XMLDoc;
 
 
----
 
 
//This function process the XML
function GetStudents(aXMLInput: string): string;
var
Line 512 ⟶ 518:
Result:= Trim(Result);
end;
 
 
----
 
//Consuming code example (fragment):
Anonymous user