ee.String.length
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
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
print(ee.String('').length().getInfo()) # 0
print(ee.String('abc123').length().getInfo()) # 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."],[[["`String.length()` is a method that returns the number of characters in a string as an integer."],["The method takes one argument: the input string for which to determine the length."],["Examples demonstrate its usage in both JavaScript and Python within the Earth Engine environment."]]],["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"]]