Answers for "how to check a certain character of a string 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 check a certain character of a string delphi"

Browse Popular Code Answers by Language