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