Rahul Sharma (Editor)

Len (programming)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In computer programs, len is the name of one of the major string functions. It stands for length, and returns the length of a specific string. Many common programming languages operate on strings using string functions.

Contents

It is named len in the language BASIC and its derivatives such as Visual Basic. It is named strlen in the language C and its derivatives such as PHP. In some other languages, the full word length is written out as the name of the function. For other languages see Comparison of programming languages (string functions).

Use in other languages

To see a list of uses in other languages see the length section in

Use in Visual Basic

In Visual Basic, the prototype of the Len function is this:

An example below shows an example of the use of Len function.

This function reads a string from an input box and outputs its length.

For example, the input "Hello!" will output 6.

Use in Python

In Python, len() can be used to denote the length of a string:

where the word "Wikipedia" clearly has 9 letters. Consider also the example of "I am John"

because "I am John" clearly has 9 characters (keep in mind that spaces are counted as well).

The function len() can also be used to find the size (i.e. number of elements) of lists, tuples, dictionaries, sets, and other sequence types (any object that implements a __len__() method can be used). Here the list p includes 3 entries:

Use in Go

In Go, len() can be used to obtain the length of a string, array, or slice, the number of keys in a map, or the number of elements queued in a channel.

References

Len (programming) Wikipedia