Earth Engine has introduced
noncommercial quota tiers to safeguard shared compute resources and ensure reliable performance for everyone. Noncommercial projects use the Community Tier by default, though you can change a project's tier at any time.
ee.String.length
Stay organized with collections
Save and categorize content based on your preferences.
Returns the length of a string.
| Usage | Returns | String.length() | Integer |
| Argument | Type | Details | this: string | String | The 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)
display(ee.String('').length()) # 0
display(ee.String('abc123').length()) # 6
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[],["The `String.length()` method calculates the number of characters in a string. It takes a string as input (`this: string`) and returns an integer representing the string's length. For example, an empty string returns a length of 0, while the string 'abc123' returns a length of 6. This function can be used in both JavaScript and Python (using the `ee` library and `geemap`).\n"]]