H2OFrame holding the matching positions or a logical vector
if `output.logical` is enabled.
Arguments
pattern
A character string containing a regular expression.
x
An H2O frame that wraps a single string column.
ignore.case
If TRUE case is ignored during matching.
invert
Identify elements that do not match the pattern.
output.logical
If TRUE returns logical vector of indicators instead of list of matching positions
Details
This function has similar semantics as R's native grep function
and it supports a subset of its parameters. Default behavior is
to return indices of the elements matching the pattern. Parameter
`output.logical` can be used to return a logical vector indicating
if the element matches the pattern (1) or not (0).