How can I match "Because it already exists
" with regex in string below :
<faultstring>Error has occured! Reason why: Because it already exists. request id: 443p3-34356a</faultstring>
This expressio fails :
(.+)+Because it already exists(.+)+
I need to match <faultstring></faultstring>
as well, so I need to match Because it already exists
inside faulstring opening and closing tags
note:
This is a multiline string, I just printed out this one it is important.