[#absl-StrCat-0dd] = xref:absl.adoc[absl]::StrCat :relfileprefix: ../ :mrdocs: Merges three strings or numbers into a single string. == Synopsis Declared in `<absl/strings/str_cat.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[nodiscard]] std::string StrCat( xref:absl/AlphaNum.adoc[AlphaNum] const& a, xref:absl/AlphaNum.adoc[AlphaNum] const& b, xref:absl/AlphaNum.adoc[AlphaNum] const& c); ---- == Return Value The concatenation of the arguments. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== == Parameters [cols="1,4"] |=== | Name| Description | *a* | The first value to concatenate. | *b* | The second value to concatenate. | *c* | The third value to concatenate. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#