absl::SubstituteAndAppend

Substitutes variables into format and appends the result to output.

Synopsis

Declared in <absl/strings/substitute.h>

void
SubstituteAndAppend(
    std::string* output,
    std::string_view format,
    /* implementation-defined */ const& a0,
    /* implementation-defined */ const& a1,
    /* implementation-defined */ const& a2);

Parameters

NameDescription
outputThe string that the substituted result is appended to.
formatThe format string with $0-$9 placeholders.
a0Substitution argument for $0.
a1Substitution argument for $1.
a2Substitution argument for $2.