[#absl-StripTrailingAsciiWhitespace-06] = xref:absl.adoc[absl]::StripTrailingAsciiWhitespace :relfileprefix: ../ :mrdocs: `StripTrailingAsciiWhitespace` overloads == Synopses Declared in `<absl/strings/ascii.h>` Returns absl::string_view with whitespace stripped from the end of the given string_view. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[nodiscard]] std::string_view xref:absl/StripTrailingAsciiWhitespace-05.adoc[StripTrailingAsciiWhitespace](std::string_view str); ---- [.small]#xref:absl/StripTrailingAsciiWhitespace-05.adoc[_» more..._]# Strips in place whitespace from the end of the given string [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:absl/StripTrailingAsciiWhitespace-01.adoc[StripTrailingAsciiWhitespace](std::string* str); ---- [.small]#xref:absl/StripTrailingAsciiWhitespace-01.adoc[_» more..._]# == Return Value A view of `str` without trailing whitespace. == Parameters [cols="1,4"] |=== | Name| Description | *str* | The characters to strip trailing whitespace from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#