2017-01-10 93 views
3

我有很多字符串,如下所示。R:如何拆分字符串並保留它的一部分?

> x=c("cat_1_2_3", "dog_2_6_3", "cow_2_8_6") 
> x 
[1] "cat_1_2_3" "dog_2_6_3" "cow_2_8_6" 

我想單獨的字符串,而仍然拿着它的第一部分,如下所示。

"cat_1" "cat_2" "cat_3" "dog_2" "dog_6" "dog_3" "cow_2" "cow_8" "cow_6" 

有什麼建議嗎?

回答

2

我們可以使用sub

scan(text=sub("([a-z]+)_(\\d+)_(\\d+)_(\\d+)", "\\1_\\2,\\1_\\3,\\1_\\4", 
      x), what ='', sep=",", quiet = TRUE) 
#[1] "cat_1" "cat_2" "cat_3" "dog_2" "dog_6" "dog_3" "cow_2" "cow_8" "cow_6" 

或者另一種選擇是split

unlist(lapply(strsplit(x, "_"), function(x) paste(x[1], x[-1], sep="_"))) 
1

字符串中,你可以嘗試拆分字符串,然後使用paste重新結合。

f <- function(x) { 
    res <- strsplit(x,'_')[[1]] 
    paste(res[1], res[2:4], sep='_') 
} 

x <- c("cat_1_2_3", "dog_2_6_3", "cow_2_8_6") 

unlist(lapply(x, f)) 
相關問題