replaceRaw overloads
Declared in <bdlpcre_regex.h>
Replace matches of pattern() in subject with replacement, without validating UTF-8 in replacement.
int
replaceRaw(
bsl::string* result,
int* errorOffset,
std::string_view const& subject,
std::string_view const& replacement,
size_t options = 0) const;
» more...
Same as the preceding overload, writing into a std::pmr::string.
int
replaceRaw(
std::pmr::string* result,
int* errorOffset,
std::string_view const& subject,
std::string_view const& replacement,
size_t options = 0) const;
» more...
Same as the preceding overload, writing into a std::string.
int
replaceRaw(
std::string* result,
int* errorOffset,
std::string_view const& subject,
std::string_view const& replacement,
size_t options = 0) const;
» more...