Go to the source code of this file.
|
std::unique_ptr< table > | cudf::strings::split_re (strings_column_view const &input, regex_program const &prog, size_type maxsplit=-1, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Splits strings elements into a table of strings columns using a regex_program's pattern to delimit each string. More...
|
|
std::unique_ptr< table > | cudf::strings::rsplit_re (strings_column_view const &input, regex_program const &prog, size_type maxsplit=-1, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Splits strings elements into a table of strings columns using a regex_program's pattern to delimit each string starting from the end of the string. More...
|
|
std::unique_ptr< column > | cudf::strings::split_record_re (strings_column_view const &input, regex_program const &prog, size_type maxsplit=-1, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Splits strings elements into a list column of strings using the given regex_program to delimit each string. More...
|
|
std::unique_ptr< column > | cudf::strings::rsplit_record_re (strings_column_view const &input, regex_program const &prog, size_type maxsplit=-1, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Splits strings elements into a list column of strings using the given regex_program to delimit each string starting from the end of the string. More...
|
|