Substitutes variables into format and appends the result to output.
Declared in <absl/strings/substitute.h>
void
SubstituteAndAppend(
std::string* output,
std::string_view format,
/* implementation-defined */ const& a0);
| Name | Description |
|---|---|
| output | The string that the substituted result is appended to. |
| format | The format string with $0-$9 placeholders. |
| a0 | Substitution argument for $0. |