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