Home > lang > len 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa vi ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
Len
Length = Len ( Arg AS String ) AS Integer

Returns the byte count which is occupied by the string Arg. Each ASCII character which has the code 0 to 127 requires one byte, UTF-8 characters as ä, ö, ü, ß require two or more bytes.

Example

PRINT Len("Gambas"), Len("äöü")

6       6

PRINT Len("")

0

See also

String Functions