The Fauna service will be ending on May 30, 2025.

For more information on the service wind down, see our announcement and the Fauna Service End-of-Life FAQ.

string.length

Get a String's length.

Signature

<String>.length: Number

Description

Returns the calling String's length.

The length of an empty String is 0.

Return value

Type Description

Int

Number of characters in the calling String.

Examples

Get the length of a String:

"HTTP/1.1 200 OK".length
15
\