Jon Clements wrote: > On 28 May, 16:24, "[email protected]" <[email protected]> wrote: >> Hi i have the following xml message i want to omit the headers, any >> hints?
> Assuming the header is separated by a blank line, something like:
>
> list(islice(dropwhile(bool, s.split('\n')), 1, None))
Making the same assumptions, but giving a single string instead of a list of
lines:
s.partition("\n\n")[-1]
Peter
--
http://mail.python.org/mailman/listinfo/python-list
