ee.String.length

Returns the length of a string.

UsageReturns
String.length()Integer
ArgumentTypeDetails
this: stringStringThe string from which to get the length.

Examples

Code Editor (JavaScript)

print(ee.String('').length());  // 0
print(ee.String('abc123').length());  // 6

Python setup

See the Python Environment page for information on the Python API and using geemap for interactive development.

import ee
import geemap.core as geemap

Colab (Python)

print(ee.String('').length().getInfo())  # 0
print(ee.String('abc123').length().getInfo())  # 6