delphi char to string code example
Example: choose character from string in delphi
var
sA : String;
cA : Char;
sA := 'Name';
cA := A[1]; //This selects the first letter of your string
var
sA : String;
cA : Char;
sA := 'Name';
cA := A[1]; //This selects the first letter of your string