do (version 1.4.0.0)

Grepl: Judge for Included Character

Description

Judge for Included Character

Usage

Grepl(pattern, x)

Arguments

pattern

one or more vectors

x

one or more vectors

Value

a matrix with logical words

Details

'

Examples

Run this code
# NOT RUN {
a=c('abcd','agj','abcu')

# Grepl for one vector
pat1='b'
Grepl(pat1,a)

# Grepl for two vectors
pat2=c('c','d')
Grepl(pat2,a)

# use %or% in pattern
pat3=c('a%or%c','d')
Grepl(pat3,a)

# use %and% in pattern
pat4=c('a%and%c','d')
Grepl(pat4,a)
# }

Run the code above in your browser using DataCamp Workspace