in reply to regex help please

From "not the second",I presume both lines are present in the variable being searched. (Previous posts assumed you were reading a line at a time.)

The following two snippets will stop matching at the first <0a>, not the second.

s/rcvtime.*?<0a>//;
s/rcvtime(?:(?!<0a>).)*<0a>//;