
std::replace, std::replace_if - cppreference.com
Feb 12, 2025 · Replaces all elements in the range [first, last) with new_value if they satisfy specific criteria.
std::basic_string<CharT,Traits,Allocator>:: replace - Reference
Aug 8, 2023 · See also replace_with_range (C++23) replaces specified portion of a string with a range of characters (public member function) [edit] regex_replace (C++11) replaces …
std::ranges::replace, std::ranges::replace_if - cppreference.com
Feb 14, 2025 · unique replace_copyreplace_copy_if reverse_copy rotate_copy unique_copy Partitioning operations is_partitioned partition_point partition partition_copy stable_partition …
Replacing text macros - cppreference.com
Mar 24, 2025 · Version (1) of the #define directive behaves exactly like that. Function-like macros Function-like macros replace each occurrence of defined identifier with replacement-list, …
std:: replace_copy, std:: replace_copy_if - cppreference.com
Feb 13, 2025 · Copies the elements from the range [first,last) to another range beginning at d_first, while replacing all elements satisfying specific criteria with new_value.
Replacement functions - cppreference.com
Feb 24, 2025 · Certain functions for which a definition is supplied by the implementation are replaceable . A C++ program may provide a definition with the signature of a replaceable …
std::ranges::replace_copy, std::ranges::replace_copy_if, std::ranges ...
unique replace_copyreplace_copy_if reverse_copy rotate_copy unique_copy Partitioning operations is_partitioned partition_point partition partition_copy stable_partition Sorting …
std::basic_string<CharT,Traits,Allocator>:: replace_with_range
Oct 26, 2023 · Replaces the characters in the range [first,last) with the characters from the range rg.
std::regex_replace - cppreference.com
Nov 17, 2024 · regex_replace uses the regular expression re to perform substitution on the target character sequence:
std::filesystem::path::replace_extension - cppreference.com
Oct 2, 2023 · Replaces the extension with replacement or removes it when the default value of replacement is used.