1-liner solution in Clear category for Remove All Before by Stensen
remove_all_before = lambda i, j: i[i.index(j):] if j in i else i
Sept. 20, 2020