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
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