Hi,
I've a multi line string, which I want to delete the first 22 lines from, I then want to use re.findall (which appears to only work on strings).
Is there an easier way to do it than writing the string to a file, reading in as a list, deleting first 22 lines, then writing out and reading in as a string to use re.findall on?
Thanks