Strings column APIs for splitting strings using a delimiter string. More...
#include <cudf/scalar/scalar.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< table > | cudf::strings::split (strings_column_view const &strings_column, string_scalar const &delimiter=string_scalar(""), 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()) |
| Returns a list of columns by splitting each string using the specified delimiter. More... | |
| std::unique_ptr< table > | cudf::strings::rsplit (strings_column_view const &strings_column, string_scalar const &delimiter=string_scalar(""), 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()) |
| Returns a list of columns by splitting each string using the specified delimiter starting from the end of each string. More... | |
| std::unique_ptr< column > | cudf::strings::split_record (strings_column_view const &strings, string_scalar const &delimiter=string_scalar(""), 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 individual strings elements into a list of strings. More... | |
| std::unique_ptr< column > | cudf::strings::rsplit_record (strings_column_view const &strings, string_scalar const &delimiter=string_scalar(""), 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 individual strings elements into a list of strings starting from the end of each string. More... | |
| std::unique_ptr< column > | cudf::strings::split_part (strings_column_view const &input, string_scalar const &delimiter=string_scalar(""), size_type index=0, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a columns of strings by splitting each input string using the specified delimiter and returning the string at the specified index. More... | |
Strings column APIs for splitting strings using a delimiter string.
Definition in file split.hpp.