Strings column APIs for replacing target strings or slices with replacement strings. More...
#include <cudf/column/column.hpp>#include <cudf/scalar/scalar.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::replace (strings_column_view const &input, string_scalar const &target, string_scalar const &repl, cudf::size_type maxrepl=-1, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Replaces target string within each string with the specified replacement string. More... | |
| std::unique_ptr< column > | cudf::strings::replace_slice (strings_column_view const &input, string_scalar const &repl=string_scalar(""), size_type start=0, size_type stop=-1, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| This function replaces each string in the column with the provided repl string within the [start,stop) character position range. More... | |
| std::unique_ptr< column > | cudf::strings::replace (strings_column_view const &input, strings_column_view const &targets, strings_column_view const &repls, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Replaces, per row, all occurrences of targets[i] within input[i] with repls[i]. More... | |
| std::unique_ptr< column > | cudf::strings::replace_multiple (strings_column_view const &input, strings_column_view const &targets, strings_column_view const &repls, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
| Replaces substrings matching a list of targets with the corresponding replacement strings. More... | |
Strings column APIs for replacing target strings or slices with replacement strings.
Definition in file replace.hpp.