Returns whether a given string text ends with suffix.
Synopsis
Declared in <absl/strings/match.h>
constexpr
bool
EndsWith(
std::string_view text,
std::string_view suffix) noexcept;
Return Value
true if text ends with suffix, false otherwise.
Parameters
Name |
Description |
text |
The string to test. |
suffix |
The suffix to look for. |
Created with MrDocs