I have the below condition.
Monday 8:30 a.m. to 6:00 p.m. <.br> Tuesday Closed <.br> Wednesday 8:30 a.m. to 6:00 p.m.
Here Tuesday is Closed. So i need to exclude the below value from the string '<.br>Tuesday Closed' and generate as :
Monday 8:30 a.m. to 6:00 p.m. <.br> Wednesday 8:30 a.m. to 6:00 p.m.
Tried with REGEXP_REPLACE(OfficeHrs,'Closed',' ') which will only emit the Closed part, but not sure how to ignore the <.br> from the string