[#absl-StrAppend-0b9] = xref:absl.adoc[absl]::StrAppend :relfileprefix: ../ :mrdocs: Appends four strings or numbers to an existing string. == Synopsis Declared in `<absl/strings/str_cat.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void StrAppend( std::string* dest, xref:absl/AlphaNum.adoc[AlphaNum] const& a, xref:absl/AlphaNum.adoc[AlphaNum] const& b, xref:absl/AlphaNum.adoc[AlphaNum] const& c, xref:absl/AlphaNum.adoc[AlphaNum] const& d); ---- == Parameters [cols="1,4"] |=== | Name| Description | *dest* | The string to append to. | *a* | The first value to append. | *b* | The second value to append. | *c* | The third value to append. | *d* | The fourth value to append. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#