Displaying 1 result from an estimated 1 matches for "u0097".
Did you mean:
0097
2008 Aug 25
1
Unicode notation \x000
...ub("\u008e", "\\\'e", x, fixed = TRUE)
x <- gsub("?", "\\\'I", x, fixed = TRUE)
x <- gsub("\u0092", "\\\'i", x, fixed = TRUE)
x <- gsub("?", "\\\'O", x, fixed = TRUE)
x <- gsub("\u0097", "\\\'o", x, fixed = TRUE)
x <- gsub("?", "\\\'U", x, fixed = TRUE)
x <- gsub("\u009c", "\\\'u", x, fixed = TRUE)
x
}
This function works fine for me if I source from a file, but if I try
to include it into a packa...