rstudio 从有条件的列中的数字中删除字符

发布于 2025-01-11 16:47:42 字数 164 浏览 0 评论 0原文

我有一列屏幕分辨率,其中包含“IPS 面板视网膜显示屏 2560x1600”、“1440x900”、“全高清 1920x1080”、“IPS 面板全高清 1920x1080”等观察值。我想将它们分开。我尝试了 gsub 函数,但结果是也排除了“x”,并得到了例如 19201080 的结果。你能帮我解决这个问题吗?

I have a column of screen resolutions with observations like 'IPS Panel Retina Display 2560x1600', '1440x900', 'Full HD 1920x1080', 'IPS Panel Full HD 1920x1080', etc. I want to separate them. I tried the gsub function but the result is to exclude the 'x' also and have the result for example 19201080. Can you help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

影子的影子 2025-01-18 16:47:42
vec <- c('IPS Panel Retina Display 2560x1600', '1440x900', 'Full HD 1920x1080', 'IPS Panel Full HD 1920x1080')
strcapture("(.*)\\b([0-9]+)x([0-9]+)\\b(.*)", vec, proto = list(pre = "", x=0L, y=0L, post = ""))
#                         pre    x    y post
# 1 IPS Panel Retina Display  2560 1600     
# 2                           1440  900     
# 3                  Full HD  1920 1080     
# 4        IPS Panel Full HD  1920 1080     
vec <- c('IPS Panel Retina Display 2560x1600', '1440x900', 'Full HD 1920x1080', 'IPS Panel Full HD 1920x1080')
strcapture("(.*)\\b([0-9]+)x([0-9]+)\\b(.*)", vec, proto = list(pre = "", x=0L, y=0L, post = ""))
#                         pre    x    y post
# 1 IPS Panel Retina Display  2560 1600     
# 2                           1440  900     
# 3                  Full HD  1920 1080     
# 4        IPS Panel Full HD  1920 1080     
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文