Sublime Text Regex or wildcard

regex, sublimetext2

Solution

Regex search for `<itembinlist>[^<]+</itembinlist>`, replace with nothing.

Problem

I would like to find all instances of the following in Sublime Text and delete it. I dont need to check the inner text so: this: ``` <itembinlist>W323423</itembinlist> or <itembinlist>W43434</itembinlist> ``` would match and then deleted. Any help is appreciated.

Original source