I have a regex question. I have many strings, some of which contain a varying number of <> tags embedded in the text. One example is (italics added by me):
<span style="">D</span><span style="font-family: sans-serif;">uring the last portoflio review we. </span> <br> <span style="font-family: sans-serif;"> The term loan we own for (TLB-6 USD 2 purchased at
I'd like all of the <> including the text between removing. That would leave the above text as:
During the last portoflio review we. The term loan we own for (TLB-6 USD 2 purchased at
Some of the strings have no <> tags, others have quite a lot. Any solution would need to be able to manage this inconsistency in this free text field.
Thanks!