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