changequote({,}) define({_TITLE_},{Varkon MBS Programmers manual}) define({_SUBTITLE_},{- length - Function}) define({_INDEXLINK_},{index}) define({_STYLE_},{../varkonstyle.css}) include(../../include/header.inc)
Returns the number of characters in a string.
n:=length(s); int n; string s;
s | - Any string. |
None.
An INT value in the range 0 <= n <=132.
The maximum length of a string is 132 characters.
n:=length("ABC"); ! Equal to n:=3; n:=length(" "); ! Equal to n:=1; n:=length(""); ! Equal to n:=0;include(../../include/svnversion.inc) include(../../include/footer.inc)