Convert the string to lowercase. Returns: The string lower operation.
(self)
| 668 | return self.split().length() |
| 669 | |
| 670 | def lower(self) -> StringVar: |
| 671 | """Convert the string to lowercase. |
| 672 | |
| 673 | Returns: |
| 674 | The string lower operation. |
| 675 | """ |
| 676 | return string_lower_operation(self) |
| 677 | |
| 678 | def lstrip(self, chars: StringVar | str | None = None) -> StringVar: |
| 679 | """Left strip the string. |