www.kxcad.net Home > Electronic Index > Altium(Protel) Index
Declaration
function length( const s: string) : integer;
Description
The length function returns the number of elements in a string.
Example
Var
I : Integer;
Begin
For I := 1 To Length(s) Do
S[I] := UpperCase(S[i]);
End;
See also