ee.String.length

  • The String.length() method returns the length of a string as an integer.

  • It can be used in both JavaScript and Python Earth Engine environments.

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