Skip to content
Prev 54817 / 63424 Next

readLines interaction with gsub different in R-dev

I was told to re-raise this issue with R-dev:

In the documentation of R-dev and R-3.4.3, under ?gsub
However, the following code runs differently:

tempf <- tempfile()
writeLines(enc2utf8("author: Am?lie"), con = tempf, useBytes = TRUE)
entry <- readLines(tempf, encoding = "UTF-8")
gsub("(\\w)", "\\U\\1", entry, perl = TRUE)


"AUTHOR: AM?LIE"  # R-3.4.3

"A"                              # R-dev



Best,

Hugh Parsonage.