Remove All Lines Between Two Unique Lines

Hi all! Im wondering if its possible to remove all lines between two lines. Im working with a document like this:

data1
data2
<Remove>
data3
data4
</Remove>
data5
data6

I need it to end up like this if that possible:

data1
data2
data5
data6

There are multiple instances of the <Remove> </Remove> in the document.

Hi,

sed '/<Remove>/,/<\/Remove>/d' file

This also one way to achieve this .

sed -n '/<Remove>/,/<\/Remove>/!p' input