I'm currently working with many XML files and some of the data is encoded as below. How do I work with this data? Up until now I have been just simply using gsub() to replace the characters for blanks! Maybe there is an easier way.
Here is the description <br><br
>Here is some more text
I have been doing this:
gsub('&','')
Or this:
gsub('&','&')