Need to replace/remove multiple occurrences in notepad++ using regex. Here is an example:
.... somethingtext to be removed or replaced t
One way to do this find/replace:
Find what: (<item>).*?(<\/item>)\R?
(<item>).*?(<\/item>)\R?
Replace with: $1$2
$1$2
Check the Matches new line checkbox.
Matches new line
More information: Notepad++ User Manual - Regular Expressions