boost::urls::grammar::find_if_not

Find the first character in the string that is not in CharSet

Synopsis

Declared in header <boost/url/grammar/charset.hpp>

template<class CharSet>
const char*
find_if_not(
    const char* const first,
    const char* const last,
    const CharSet& cs) noexcept;

Description

Exception Safety

Throws nothing.

Return Value

A pointer to the found character, otherwise the value last.

Parameters

Name Description

first

A pointer to the first character in the string to search.

last

A pointer to one past the last character in the string to search.

cs

The character set to use.

See Also