ee.String

Constructs a new String.

UsageReturns
ee.String(string)String
ArgumentTypeDetails
stringObject|StringA string or a computed object.

Examples

Code Editor (JavaScript)

print(ee.String('I am a string'));  // I am a string

// Strings can use emoji.
print(ee.String('🧲⚡️👀'));  // 🧲⚡️👀

// Empty string.
var empty = ee.String('');
print(empty);  // ''
print(empty.length());  // 0

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('I am a string').getInfo())  # I am a string

# Strings can use emoji.
print(ee.String('🧲⚡️👀').getInfo())  # 🧲⚡️👀

# Empty string.
empty = ee.String('')
print(empty.getInfo())  # ''
print(empty.length().getInfo())  # 0