I am using rvest to parse a website. I\'m hitting a wall with these little non-breaking spaces. How does one remove the whitespace that is created by the
rvest
I have run into the same problem, and have settled on the simple substitution of
gsub(intToUtf8(160),'',bodytext)
(Edited to correct case.)