Home

News

International

Screen Shots

Documentation

Download

Build

License

Credits

Contact

SourceForge Project

Tintware Documentation : Tint Programming Language : Tint Reference : Strings : string.length

Syntax

#(%string.length)

%string is any string.

The length of the string will be returned; this is the total length of the string and does not depend upon the offset.

Example

#(def,a-string,abcdefgh)

#(a-string.length)
8
#(a-string.offset,4)

#(a-string.length)
8