Namespaces | Functions
findall.hpp File Reference

Strings column APIs for finding all regex matches within each string. More...

#include <cudf/strings/regex/flags.hpp>
#include <cudf/strings/strings_column_view.hpp>
#include <cudf/table/table.hpp>
#include <cudf/utilities/memory_resource.hpp>

Go to the source code of this file.

Namespaces

 cudf
 cuDF interfaces
 
 cudf::strings
 Strings column APIs.
 

Functions

std::unique_ptr< column > cudf::strings::findall (strings_column_view const &input, regex_program const &prog, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 Returns a lists column of strings for each matching occurrence using the regex_program pattern within each string. More...
 
std::unique_ptr< column > cudf::strings::find_re (strings_column_view const &input, regex_program const &prog, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 Returns the starting character index of the first match for the given pattern in each row of the input column. More...
 

Detailed Description

Strings column APIs for finding all regex matches within each string.

Definition in file findall.hpp.