I have this:
start_xxx_end_Leftstart_xxx_end_Right
How can I use the regular expression to remove characters between start
and end
(inclusive) so that I can get the following string:
_Left_Right
I tried this regex in java but it removes EVERYTHING between start
and end
:
start(.*)end