selecting delimiter in regex while selecting portion between lines in case of perl
- by Gaurav S
The message has detection report:
<detection_report>
Test 1
Test 2
Test 3
</detection_report>
---------------------------------------------
Have a nice day
I want to select portion between <detection_report> tags, including these two tags.
I have written following code.
The message has detection report\:((.|\n|\r)+)(\<\/detection_report\>)
but its not working. Can anyone help me with this.