| string (1) | size_type find_first_not_of (const basic_string& str, size_type pos = 0) const; |
|---|---|
| c-string (2) | size_type find_first_not_of (const charT* s, size_type pos = 0) const; |
| buffer (3) | size_type find_first_not_of (const charT* s, size_type pos, size_type n) const; |
| character (4) | size_type find_first_not_of (charT c, size_type pos = 0) const; |
| string (1) | size_type find_first_not_of (const basic_string& str, size_type pos = 0) const noexcept; |
|---|---|
| c-string (2) | size_type find_first_not_of (const charT* s, size_type pos = 0) const; |
| buffer (3) | size_type find_first_not_of (const charT* s, size_type pos, size_type n) const; |
| character (4) | size_type find_first_not_of (charT c, size_type pos = 0) const noexcept; |
|
|
The first non-alphabetic character is - at position 12 |