I am trying to remove characters from specific words from twitter text mining, lamentably my text has wrong word and ending because of accent:
my result: “una muriÃ
result expected: una murio
I am using gsub :
mach_text = gsub("una$,"", ignore.case=T, mach_text)
Pd: I am working with Spanish text and lamentably my text have word ending because accent, I did try with:
mach_text = iconv(mach_text, "latin1")
But doesn´t work. Thanks in advance