Strings column APIs for translating or filtering individual characters. More...
#include <cudf/column/column.hpp>#include <cudf/scalar/scalar.hpp>#include <cudf/strings/string_view.hpp>#include <cudf/strings/strings_column_view.hpp>#include <cudf/utilities/memory_resource.hpp>#include <vector>Go to the source code of this file.
Namespaces | |
| cudf | |
| cuDF interfaces | |
| cudf::strings | |
| Strings column APIs. | |
Enumerations | |
| enum class | cudf::strings::filter_type : bool { cudf::strings::KEEP , cudf::strings::REMOVE } |
| Removes or keeps the specified character ranges in cudf::strings::filter_characters. More... | |
Functions | |
| std::unique_ptr< column > | cudf::strings::translate (strings_column_view const &input, std::vector< std::pair< char_utf8, char_utf8 >> const &chars_table, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Translates individual characters within each string. More... | |
| std::unique_ptr< column > | cudf::strings::filter_characters (strings_column_view const &input, std::vector< std::pair< cudf::char_utf8, cudf::char_utf8 >> characters_to_filter, filter_type keep_characters=filter_type::KEEP, string_scalar const &replacement=string_scalar(""), rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Removes ranges of characters from each string in a strings column. More... | |
Strings column APIs for translating or filtering individual characters.
Definition in file translate.hpp.