Displaying 1 result from an estimated 1 matches for "r70591".
Did you mean:
370591
2016 May 09
2
Regression in match() in R 3.3.0 when matching strings with different character encodings
Hi
I think the following behavior is a regression from R 3.2.5:
> match(iconv( c("\u00f8", "A"), from = "UTF8", to = "latin1" ),
"\u00f8")
[1] 1 NA
> match(iconv( c("\u00f8"), from = "UTF8", to = "latin1" ), "\u00f8")
[1] NA
> match(iconv( c("\u00f8"), from = "UTF8",