20190506-R语言字符处理函数※grep、grepl

※ grep

Usage
grep(pattern, x, ignore.case = FALSE, perl = FALSE, value = FALSE, fixed = FALSE, useBytes = FALSE, invert = FALSE);
在向量x中寻找含有特定字符串(pattern参数指定)的元素,返回其在x中的下标;
Arguments

  • invert→若设置为TRUE,返回不包含pattern的元素的下标
  • value→若设置为TRUE,返回相应的元素;
    Example
    20190506-R语言字符处理函数※grep、grepl_第1张图片
    grep

grepl

Usage
grepl(pattern, x, ignore.case = FALSE, perl = FALSE, fixed = FALSE, useBytes = FALSE)
类似grep,但是返回逻辑向量,即是否包含pattern
Example

20190506-R语言字符处理函数※grep、grepl_第2张图片
grepl返回逻辑值

你可能感兴趣的:(20190506-R语言字符处理函数※grep、grepl)