Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
lambda...index... solution in Clear category for Remove All Before by maksimus
remove_all_before = lambda i, b: i[i.index(b):] if b in i else i
May 18, 2020