I am trying to trim a space in an XML tag, this is an example of what I have:
<xmlT ag>
content between tag
</xmlTa g>
to:
<xmlTag>
content between tag
</xmlTag>
This is the expression that I wrote for that:
Find: [<](\w)* (\w)*[>]|[<][/](\w)* (\w)*[>]
Replace: \1\2
but is not working as expected.
Is there any other workaround for this?
<xmlT ag>with<xmlTag>?