I have the following string:
<some texts hier>
<br>
you can see that its format is wrong.
I want to use a regular expression to find the space in the angle brackets and replace it with the angle brackets. The desired output is
<font color="blue">some texts hier</font>
<br>
I have tried many methods myself, such as < (. *?\ w) >
, but the results are always wrong.
rookie problem. Thank you for your help!