I need to determine the total number of characters in a textbox and display the value in a label, but all whitespace need to be excluded.
Here is the code:
var
sLength : string;
i : integer;
begin
sLength := edtTheText.Text;
slength:= ' ';
i := length(sLength);
//display the length of the string
lblLength.Caption := 'The string is ' + IntToStr(i) + ' characters long';
edtTheText.TexttosLength, and then on the very next line you assign a blank space instead (sLength:= ' ';). The second assignment would make the length ofsLengthalways 1 (unless you then remove the blank space, in which case it would always be 0). – Ken White Sep 17 '12 at 17:50