string::npos
时间: 2023-10-09 17:04:06 浏览: 59
C++ STL std::string详细讲解
5星 · 资源好评率100%
`string::npos` 是一个 `string` 类的静态成员变量,表示 `string::find` 函数未找到匹配字符串时的返回值。`npos` 的值通常为 `-1`,因此在使用 `find` 函数时,如果返回值为 `npos`,则表示没有找到匹配的子字符串。一般用于判断字符串中是否存在某个子字符串。
阅读全文
C++ STL std::string详细讲解