※ 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
grepl
Usage
grepl(pattern, x, ignore.case = FALSE, perl = FALSE, fixed = FALSE, useBytes = FALSE)
类似grep,但是返回逻辑向量,即是否包含pattern
Example