在R中替换第一次出现的“:”而不是第二次

时间:2015-12-14 14:30:14

标签: regex r lapply gsub

为了能够处理我想要替换字符串中的第一次出现:(这是我的标记,语音开始)。

text <- c("Mr. Mark Francois (Rayleigh) (Con): If the scheme was so poorly targeted, why were the Government about to roll it out to employees in the Department of Trade and Industry and the Department for Work and Pensions on the very day the Treasury scrapped it? The CBI and the TUC have endorsed the scheme, which has helped 500,000 people and their families to improve their computer skills. When the Chancellor announced the original concession, he told the  Daily Record:", "Even at this eleventh hour, will the Government recognise that this is a poor decision, taken by an analogue Chancellor who is stuck in the past and reversing?", "Dawn Primarolo: The hon. Gentleman answers his own question, as the US does not have similar schemes. He is right to address the question of how we give people in the greatest need access to computer technology, but the Low Pay Commission\u0092s 2005 report showed that that was not happening under the scheme. Why should the Government spend £200 million on a poorly targeted scheme? It was being abused and was not delivering, so the Government have refocused to ensure that the objective is achieved.")

我可以使用

找到第一个:的位置
lapply(gregexpr("\\:", text), head, 1)

[[1]]
[1] 35

[[2]]
[1] -1

[[3]]
[1] 15

但是,我无法在text中替换它(例如,使用|)。

2 个答案:

答案 0 :(得分:18)

我们可以使用sub,因为它只匹配第一次出现的模式:,然后我们将其替换为|

sub(':', '|', text)

答案 1 :(得分:3)

您还可以使用str_replace包中的stringr

text1 <- c("ABC:DEF:", "SDF", "::ASW")
library(stringr)
str_replace(text1, ":", "|")
# [1] "ABC|DEF:" "SDF"      "|:ASW"  

这会将:的第一次出现替换为|