I need to extract with Regex a sentence without the tag <br>
but it's give me issues with that.
(?<=Status:) (.*)[^<br>]
Status: i3 Naviera indicates that the container is already released<br>
This sentence comes from an mail
"<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\nStatus:
i3 Naviera indicates that the container is already
released<br>\r\nObservations: data requested.<br>\r\n<br>\r\n<img
src=\"http://test/logo/Logo2.png\">\r\n</body>\r\n</html>\r\n"
I just need to extract:
i3 Naviera indicates that the container is already released
.*", "\\1", "..") – GKi Dec 16 '19 at 17:33