gpt4 book ai didi

r - 与 Unix 相比,使用 unicode 替换的 R 中的 gsub 在 Windows 下给出不同的结果?

转载 作者:行者123 更新时间:2023-12-04 10:55:27 39 4
gpt4 key购买 nike

在 Mac 或 Linux 下的 R 中运行以下命令会产生预期的结果,即希腊字母 beta:

gsub("<U\\+[0-9A-F]{4}>", "\u03B2", "<U+03B2>")

"\u03B2"

但是,在 Windows 下运行第一个命令会产生错误的结果,但第二个命令会给出正确的 beta 输出。我在 Windows 上尝试了 3 个版本的 R(3.0.2、3.1.1 和 3.1.2)。他们都始终如一地打印出“错误”的结果。 (无法发布输出,因为我现在无法访问 Windows。)

此外,是否可以使用 gsub 将 unicodes 从格式 < U+FFFF>(忽略空格,因为没有它网站不显示任何内容)转换为“\uFFFF”?

非常感谢。

更新 :

窃取 MrFlick 的解决方案,我破解了以下丑陋的解决方案,以防一个句子中有多个 Unicode。然而,修复真的很丑,所以请随时发布改进。
test.string <- "This is a <U+03B1> <U+03B2> <U+03B2> <U+03B3> test <U+03B4> string."

trueunicode.hack <- function(string){
m <- gregexpr("<U\\+[0-9A-F]{4}>", string)
if(-1==m[[1]][1])
return(string)

codes <- unlist(regmatches(string, m))
replacements <- codes
N <- length(codes)
for(i in 1:N){
replacements[i] <- intToUtf8(strtoi(paste0("0x", substring(codes[i], 4, 7))))
}

# if the string doesn't start with a unicode, the copy its initial part
# until first occurrence of unicode
if(1!=m[[1]][1]){
y <- substring(string, 1, m[[1]][1]-1)
y <- paste0(y, replacements[1])
}else{
y <- replacements[1]
}

# if more than 1 unicodes in the string
if(1<N){
for(i in 2:N){
s <- gsub("<U\\+[0-9A-F]{4}>", replacements[i],
substring(string, m[[1]][i-1]+8, m[[1]][i]+7))
Encoding(s) <- "UTF-8"
y <- paste0(y, s)
}
}

# get the trailing contents, if any
if( nchar(string)>(m[[1]][N]+8) )
y <- paste0( y, substring(string, m[[1]][N]+8, nchar(string)) )
y
}

test.string
trueunicode.hack(test.string)

结果:
"This is a <U+03B1> <U+03B2> <U+03B2> <U+03B3> test <U+03B4> string."
"This is a α β β γ test δ string."

最佳答案

如果您在 Windows 上没有看到正确的字符,请尝试明确设置编码

x <- gsub("<U\\+[0-9A-F]{4}>", "\u03B2", "<U+03B2>")
Encoding(x) <- "UTF-8"
x

至于用 unicode 字符替换所有这些符号,我已经适应了 this answer做类似的事情。在这里,我们将 unicode 字符构建为原始向量。这是一个辅助函数
trueunicode <- function(x) {
packuni<-Vectorize(function(cp) {
bv <- intToBits(cp)
maxbit <- tail(which(bv!=as.raw(0)),1)
if(maxbit < 8) {
rawToChar(as.raw(codepoint))
} else if (maxbit < 12) {
rawToChar(rev(packBits(c(bv[1:6], as.raw(c(0,1)), bv[7:11], as.raw(c(0,1,1))), "raw")))
} else if (maxbit < 17){
rawToChar(rev(packBits(c(bv[1:6], as.raw(c(0,1)), bv[7:12], as.raw(c(0,1)), bv[13:16], as.raw(c(0,1,1,1))), "raw")))
} else {
stop("too many bits")
}
})
m <- gregexpr("<U\\+[0-9a-fA-F]{4}>", x)
codes <- regmatches(x,m)
chars <- lapply(codes, function(x) {
codepoints <- strtoi(paste0("0x", substring(x,4,7)))
packuni(codepoints)

})
regmatches(x,m) <- chars
Encoding(x)<-"UTF-8"
x
}

然后我们可以像这样使用它
x <- c("beta <U+03B2>", "flipped e <U+018F>!", "<U+2660> <U+2663> <U+2665> <U+2666>")
trueunicode(x)
# [1] "beta β" "flipped e Ə!" "♠ ♣ ♥ ♦"

关于r - 与 Unix 相比,使用 unicode 替换的 R 中的 gsub 在 Windows 下给出不同的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28248457/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com