Strings column APIs for capitalizing strings and detecting title case. More...
#include <cudf/column/column.hpp>#include <cudf/scalar/scalar.hpp>#include <cudf/strings/char_types/char_types.hpp>#include <cudf/strings/strings_column_view.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::capitalize (strings_column_view const &input, string_scalar const &delimiters=string_scalar("", true, cudf::get_default_stream()), rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Returns a column of capitalized strings. More... | |
| std::unique_ptr< column > | cudf::strings::title (strings_column_view const &input, string_character_types sequence_type=string_character_types::ALPHA, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Modifies first character of each word to upper-case and lower-cases the rest. More... | |
| std::unique_ptr< column > | cudf::strings::is_title (strings_column_view const &input, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Checks if the strings in the input column are title formatted. More... | |
Strings column APIs for capitalizing strings and detecting title case.
Definition in file capitalize.hpp.