gregexpr: Pattern Matching

Description Usage Arguments Value Constraints See Also Examples

Description

Match pattern in each element of text

Usage

1
2
gregexpr(pattern, text, ignore.case = FALSE, perl = FALSE, fixed = FALSE,
  useBytes = FALSE)

Arguments

pattern

string to search for

text

FLVector of characters or R vector where matches are sought

ignore.case

logical indicating case-sensitivity. Currently always FALSE for FLVectors

perl

logical. Should perl-compatible regexps be used? Always FALSE for FLVectors

fixed

logical. If TRUE, pattern is a string to be matched as is. For FLVectors, regualar expressions are not supported

useBytes

If TRUE the matching is done byte-by-byte rather than character-by-character. Always FALSE for FLVector

Value

FLVector with position of first match or -1 for no match or R Vector

Constraints

row FLVectors are not supported currently.

See Also

gregexpr for R function reference implementation.

Examples

1
2
3
widetable  <- FLTable("tblstringID", "stringID")
flv <- widetable[1:6,"string"]
resultflvector <- gregexpr("A",flv)

Fuzzy-Logix/AdapteR documentation built on May 6, 2019, 5:07 p.m.