Uses of Class
ai.rapids.cudf.RegexProgram

Packages that use RegexProgram
Package
Description
 
  • Uses of RegexProgram in ai.rapids.cudf

    Methods in ai.rapids.cudf with parameters of type RegexProgram
    Modifier and Type
    Method
    Description
    ColumnView.containsRe(RegexProgram regexProg)
    Returns a boolean ColumnVector identifying rows which match the given RegexProgram pattern starting at any location.
    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.
    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.
    ColumnView.replaceRegex(RegexProgram regexProg, Scalar repl)
    For each string, replaces any character sequence matching the given regex program pattern using the replacement string scalar.
    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.
    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.
    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.
    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.