Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit b277ec1c43.
PrevUpHomeNext
string::find_first_not_of (2 of 2 overloads)

Find the first occurrence of a character not equal to ch.

Synopsis
std::size_t
find_first_not_of(
    char ch,
    std::size_t pos = 0) const noexcept;
Description

Returns the index corrosponding to the first character of {begin() + pos, end()) that is not equal to ch if it exists, and npos otherwise.

Complexity

Linear.

Return Value

The first occurrence of a character that is not equal to ch, or npos if none exists.

Parameters

Name

Description

ch

The character to ignore.

pos

The index to start searching at. The default argument for this parameter is 0.


PrevUpHomeNext