Returns the length of a string.
(self)
| 150 | return apifunction.ApiFunction.call_(f'{self.name()}.index', self, pattern) |
| 151 | |
| 152 | def length(self) -> ee_number.Number: |
| 153 | """Returns the length of a string.""" |
| 154 | return apifunction.ApiFunction.call_(f'{self.name()}.length', self) |
| 155 | |
| 156 | def match( |
| 157 | self, regex: _arg_types.String, flags: _arg_types.String | None = None |