in reply to regex help please
The following two snippets will stop matching at the first <0a>, not the second.
s/rcvtime.*?<0a>//; [download]
s/rcvtime(?:(?!<0a>).)*<0a>//; [download]