Avisaro Online Documentation - Wiki
Impressum Kontakt Sitemap

LEN

Description

LEN is a function that returns the count of characters of a string. LEN needs only a single argument that is the string which characters should be counted.

Example

Printing out the length of "Hello"

outmode -2
let a$ = "hello"
print len (a$)
end

Remarks

Internally, the C-library fucntion "strlen" is used.