Displaying 1 result from an estimated 1 matches for "u009c".
Did you mean:
009c
2008 Aug 25
1
Unicode notation \x000
...ub("\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 package, the package cannot be installed:
"Error in parse(n = -1, file = file) : invalid \uxxxx sequence (line
835)"
(1) Why is there a...