gpt4 book ai didi

string - 从 R 中的字符串中删除某些字符

转载 作者:行者123 更新时间:2023-12-03 07:56:57 25 4
gpt4 key购买 nike

我在 R 中有一个包含大量单词的字符串。查看字符串时,我收到大量文本,其中包含类似于以下内容的文本:

>docs

....

\u009cYes yes for ever for ever the boys cried in their ringing voices with softened faces

....

所以我想知道如何从字符串中删除这些\u009 字符(所有这些字符,其中一些的数字略有不同)。我试过使用 gsub() ,但这并不能有效地从字符串中删除内容。

最佳答案

这应该工作

gsub('\u009c','','\u009cYes yes for ever for ever the boys ')
"Yes yes for ever for ever the boys "

这里 009c 是 unicode 的十六进制数。您必须始终指定 4 个十六进制数字。
如果您有 many ,一种解决方案是用管道将它们分开:
gsub('\u009c|\u00F0','','\u009cYes yes \u00F0for ever for ever the boys and the girls')

"Yes yes for ever for ever the boys and the girls"

关于string - 从 R 中的字符串中删除某些字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15170250/

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