to_string.find
时间: 2024-06-13 09:08:07 浏览: 136
string find in txt
3星 · 编辑精心推荐
很抱歉,`to_string`并没有`find`方法。`to_string`是C++中的一个函数,用于将数字转换为字符串。如果你想在字符串中查找子串,可以使用`find`方法。下面是一个例子:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "hello world";
int pos = str.find("world");
if (pos != string::npos) {
cout << "Found at position " << pos << endl;
} else {
cout << "Not found" << endl;
}
return 0;
}
```
这个例子中,我们定义了一个字符串`str`,然后使用`find`方法查找子串"world"。如果找到了,就输出它在字符串中的位置;否则输出"Not found"。需要注意的是,如果`find`方法没有找到子串,它会返回一个特殊的值`string::npos`,表示没有找到。
阅读全文