A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://en.cppreference.com/w/cpp/language/../keyword/continue.html below:

C++ keyword: continue - cppreference.com

#include <iostream>
#include <string>
 
[[nodiscard]] constexpr auto get_digits(const std::string& string) noexcept
{
    std::string digits{};
 
    for (const auto& character: string)
    {
        if (character < '0' || character > '9') [[likely]]
            continue; // conditionally skips the following statement
        digits += character;
    }
 
    return digits;
}
 
int main() noexcept
{
    std::cout << get_digits("H3LL0, W0RLD!");
}

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4