I have the following string:
a = "this.is.a.string"
I wish to delete everything after the 3rd '.' symbol so that it returns
trim(a)
>>> "this.is.a"
while a string without the 3rd '.' should return itself.
This answer (How to remove all characters after a specific character in python?) was the closest solution I could find, however I don't think split
would help me this time.