gpt4 book ai didi

regex - 在 R 中计算字母

转载 作者:行者123 更新时间:2023-12-01 07:18:31 26 4
gpt4 key购买 nike

我有几页文本,我想找到文本中出现的某个单词的开始和结束位置:

<body> I need to find the position of a **certain** word from a lot of text.</body>

例如这里某些(没有 **)从位置 34 开始到 40 结束。数字和标点符号也被计算在内。

我怎么能在 R 中做到这一点?文本为 xml 格式。

最佳答案

使用 gregexpr :

x <- "I need to find the position of a certain word from a lot of certain text,
which needs a certain text processing function."
gregexpr("certain", x, fixed = TRUE)
#[[1]]
#[1] 34 61 89
#attr(,"match.length")
#[1] 7 7 7
#attr(,"useBytes")
#[1] TRUE

关于regex - 在 R 中计算字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29027817/

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