| sf_iconv {stringfish} | R Documentation |
Converts encoding of one character vector to another
sf_iconv(x, from, to)
x |
An alt-rep object |
from |
the encoding to assume of 'x' |
to |
the new encoding |
This is an analogue to the base R function 'iconv'. It converts a string from one encoding (e.g. latin1 or UTF-8) to another
the converted character vector as a stringfish vector
iconv
x <- "fa\xE7ile" Encoding(x) <- "latin1" sf_iconv(x, "latin1", "UTF-8")