grepl.data.frame {pcutils}R Documentation

Grepl applied on a data.frame

Description

Grepl applied on a data.frame

Usage

grepl.data.frame(pattern, x, ...)

Arguments

pattern

search pattern

x

your data.frame

...

addtitional arguments for gerpl()

Value

a logical data.frame

Examples

matrix(letters[1:6], 2, 3) |> as.data.frame() -> a
grepl.data.frame("c", a)
grepl.data.frame("\\w", a)

[Package pcutils version 0.2.5 Index]