Namespace com.teracloud.streams.regex.re2
Operators
Functions
- regexCompile(rstring, E): Compile and index a regular expression pattern
- regexCompile(rstring, E, int64): Compile and index regular expression pattern, allows to control max memory allocated.
- regexExtract(rstring, E, rstring): Perform submatch extraction of parameters from the string after matching the pattern - runs in compiled mode (uses compiled regex index to identify the pattern).
- regexFullMatch(rstring, E): Perform a full (exact) match of the input string with the pattern - runs in compiled mode (uses compiled regex index to identify the pattern).
- regexFullMatch(rstring, rstring): Perform a full (exact) match of the input string with the pattern - runs in interpretation mode.
- regexGlobalReplace(rstring, E, rstring): Perform all replacements of the string after matching the pattern - runs in compiled mode (uses compiled regex index to identify the pattern).
- regexPartialMatch(rstring, E): Perform a partial match of the string with the pattern - runs in compiled mode (uses compiled regex index to identify the pattern).
- regexPartialMatch(rstring, rstring): Perform a partial match of the string with the provided pattern - runs in interpretation mode.
- regexReplace(rstring, E, rstring): Perform one replacement of the string after matching the pattern - runs in compiled mode (uses compiled regex index to identify the pattern).