Functions: com.teracloud.streams.regex 3.0.0
Functions
- regexCompile(rstring, E)
- Compile and index a regular expression pattern
- regexCompile(rstring, E)
- Compiles and indexes 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, E)
- Performs a full match of the whole 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.
- regexFullMatch(rstring, rstring)
- Performs a full match of the whole string with the pattern - runs in interpretation mode (like SPL regexMatch function).
- 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).
- regexGlobalReplace(rstring, E, rstring)
- Performs 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, E)
- Performs 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.
- regexPartialMatch(rstring, rstring)
- Performs a partial match of the string with the pattern - runs in interpretation mode (like SPL regexMatch function).
- 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).