string::size

Return the number of characters in the string.

Synopsis

std::size_t
size() const noexcept;

Description

The value returned does not include the null terminator, which is always present.

Complexity

Constant.