search for: 240y

Displaying 1 result from an estimated 1 matches for "240y".

Did you mean: 240
2011 Nov 23
1
gsub, utf-8 replacements and the C-locale
...;, "\u{A0}", x)) } As you might expect, in utf-8 locales it is idempotent: Sys.setlocale("LC_ALL", "UTF-8") f("x y") # [1] "x y" But in the C locale it is not: Sys.setlocale("LC_ALL", "C") f("x y") # [1] "x\302\240y" This seems weird to me. (And caused a bug in a package because I didn't realise some windows users have a non-utf8 locale) I'm not sure what the correct resolution is. Should the encoding of the output of gsub be utf-8 if either the input or replacement is utf-8? In non-utf-8 loca...