-1

我有一个字符向量:

A <- c("terrestrial human",
       "animal 7 planet",
       "geographic 23 locations",
       "discovery kids")

我想把它分成两个向量:一个包含所有包含数字的条目,另一个包含没有任何数字的数据。

v1 <- c("animal 7 planet","geographic 23 locations") 
v2 <- c("terrestrial human","discovery kids")
4

1 回答 1

1

我冒昧地声明Matrix A为一个被调用的向量A,因为它似乎是一维的 -

A[!grepl(x = A, pattern = '[[:digit:]]')]
A[grepl(x = A, pattern = '[[:digit:]]')]
于 2013-10-23T08:31:01.227 回答