Uses of Class
ai.rapids.cudf.RegexProgram
Packages that use RegexProgram
-
Uses of RegexProgram in ai.rapids.cudf
Methods in ai.rapids.cudf with parameters of type RegexProgramModifier and TypeMethodDescriptionfinal ColumnVector
ColumnView.containsRe
(RegexProgram regexProg) Returns a boolean ColumnVector identifying rows which match the given RegexProgram pattern starting at any location.final ColumnVector
ColumnView.extractAllRecord
(RegexProgram regexProg, int idx) Extracts all strings that match the given regex program pattern and corresponds to the regular expression group index.final Table
ColumnView.extractRe
(RegexProgram regexProg) For each captured group specified in the given regex program return a column in the table.final ColumnVector
ColumnView.matchesRe
(RegexProgram regexProg) Returns a boolean ColumnVector identifying rows which match the given regex program pattern but only at the beginning of the string.final ColumnVector
ColumnView.replaceRegex
(RegexProgram regexProg, Scalar repl) For each string, replaces any character sequence matching the given regex program pattern using the replacement string scalar.final ColumnVector
ColumnView.replaceRegex
(RegexProgram regexProg, Scalar repl, int maxRepl) For each string, replaces any character sequence matching the given regex program pattern using the replacement string scalar.final ColumnVector
ColumnView.stringReplaceWithBackrefs
(RegexProgram regexProg, String replace) For each string, replaces any character sequence matching the given regex program pattern using the replace template for back-references.final Table
ColumnView.stringSplit
(RegexProgram regexProg) Returns a list of columns by splitting each string using the specified regex program pattern.final Table
ColumnView.stringSplit
(RegexProgram regexProg, int limit) Returns a list of columns by splitting each string using the specified regex program pattern.final ColumnVector
ColumnView.stringSplitRecord
(RegexProgram regexProg) Returns a column that are lists of strings in which each list is made by splitting the corresponding input string using the specified regex program pattern.final ColumnVector
ColumnView.stringSplitRecord
(RegexProgram regexProg, int limit) Returns a column that are lists of strings in which each list is made by splitting the corresponding input string using the specified regex program pattern.