Find the last character missing from the specified string. Search from `pos` backwards for the first character in this string that is not equal to any of the characters in the string provided as the first argument. If `pos` is equal to @ref npos (the default), search from the last character. @li **(1)** compares with the characters in `sv`. @li **
| 1970 | @{ |
| 1971 | */ |
| 1972 | std::size_t |
| 1973 | find_last_not_of( |
| 1974 | string_view sv, |
| 1975 | std::size_t pos = npos) const noexcept |
| 1976 | { |
| 1977 | return subview().find_last_not_of(sv, pos); |
| 1978 | } |
| 1979 | |
| 1980 | /** Overload |
| 1981 | @param ch The character to compare with. |