Length

www.kxcad.net Home > Electronic Index > Altium(Protel) Index


Your Ad Here

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

Copy, Chr, Delete procedures.

Your Ad Here