Registriert seit: 18. Mai 2007
11 Beiträge
Delphi 2007 Enterprise
|
extract string from string
21. Mai 2007, 09:29
how can we extract Strings From String
myString :='Age:16'
+'Name:molley'
+'Country:Austria';
i want to extract the values of Age, Name , Country
edit1.text:=16;
edit2.text:=molley;
edit3.text:=Austria;
|