I have a few lines of HTML code :
<div class="container header">
<div class="row">
<div class="col-md-6">This is the target text</div>
</div>
</div>
How to select everything inside the <div class="container header">
using Regular Expression ?
The end result should be :
<div class="row">
<div class="col-md-6">This is the target text</div>
</div>