so I have this example string out of a html mail given:
Abholstellenname (Firmenname, Details): Musterfirma GmbH<br>
I'm using the following expression to find the company name, in this case Musterfirma GmbH:
(?<=Abholstellenname \(Firmenname, Details\): ).*
But I need to exclude the <br> tag following the company name.
How can I achieve this?
I would not ask here if I haven't read through the tutorials and still didn't get it.