How to remove characters to the left of a string?

How to remove characters to the left of a string in flutterflow?

For example Python:

cadena="www.google.com"

cadena.lstrip(".")

print(cadena)

=>Google.com

4 replies