Package | Description |
---|---|
ai.rapids.cudf |
Modifier and Type | Method and Description |
---|---|
ColumnVector |
ColumnView.containsRe(RegexProgram regexProg)
Returns a boolean ColumnVector identifying rows which
match the given RegexProgram pattern starting at any location.
|
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.
|
Table |
ColumnView.extractRe(RegexProgram regexProg)
For each captured group specified in the given regex program
return a column in the table.
|
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.
|
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.
|
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.
|
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.
|
Table |
ColumnView.stringSplit(RegexProgram regexProg)
Returns a list of columns by splitting each string using the specified regex program pattern.
|
Table |
ColumnView.stringSplit(RegexProgram regexProg,
int limit)
Returns a list of columns by splitting each string using the specified regex program pattern.
|
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.
|
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.
|
Copyright © 2024. All rights reserved.