使用带有多个分隔符的strsplit

时间:2014-11-07 04:07:45

标签: r strsplit

感兴趣的字符串可以是“有五个苹果”或“有五个苹果”

  strsplit(string, c('apples', 'APPLES'))

所以我想用苹果或者APPLES分开,因为我不知道字符串是小写字母还是大写字母。但我尝试了上面的代码,但它没有用。

1 个答案:

答案 0 :(得分:2)

您可以使用以下内容对不区分大小写的“apples”进行拆分。

x <- 'there are five APPLES in this case'
unlist(strsplit(x, '(?i:apples)', perl=T))
# [1] "there are five " " in this case"