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.
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 
Create a Mobile Website
View Site in Mobile | Classic
Share by: