gpt4 book ai didi

r - 当在向量中定义子字符串时从字符串中获取子字符串

转载 作者:行者123 更新时间:2023-12-02 03:04:19 25 4
gpt4 key购买 nike

假设我有一个像这样的向量

foo <- c('est','bel','cat')

然后我有一个像这样的字符串:

str <- "test"

如何让“est”返回

最佳答案

library(stringr)
foo[str_detect(str, foo)]
#> [1] "est"

当出现多个有效子串时:

foo <- c('est','bel','cat', 'tes')
foo[str_detect(str, foo)]
#> [1] "est" "tes"

关于r - 当在向量中定义子字符串时从字符串中获取子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43792601/

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