Answers for "how to convert char to string in delphi"

0

choose character from string in delphi

var
	sA : String;
    cA : Char;
    

sA := 'Name';
cA := A[1]; //This selects the first letter of your string
Posted by: Guest on August-09-2020

Code answers related to "how to convert char to string in delphi"

Browse Popular Code Answers by Language