gpt4 book ai didi

r - 获取字符串中的特定单词和后面的单词

转载 作者:行者123 更新时间:2023-12-04 09:31:54 25 4
gpt4 key购买 nike

我想在字符串中获取属名和种名。示例:

“他在稀树草原上看到了一只 Panthera leo”

我希望获得指定属名的 "Panthera leo"

我尝试使用 word 函数(包 stringr):

my_sentence<-"He saw a Panthera leo in the savanna"
word(my_sentence,"Panthera",+1)

我知道问题出在“+1”参数上。你有什么线索吗?

也许我应该使用 gsub 函数?

最佳答案

my_sentence<-"He saw a Panthera leo in the savanna"
x = strsplit(my_sentence, " ")
index = grep("Panthera", x, value=F)
want =x[c(index, index+1)][[1]]

关于r - 获取字符串中的特定单词和后面的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43063965/

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