Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

Gray-Ice

个人博客兼个人网站

直接使用string对象的find()方法,如果find()找到了目标返回目标的下标,如果没有找到返回string对象.npos。

下面是代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include <string>

using namespace std;

int main(void)
{
string text(" Fire f");
auto pos = text.find("Fire");
cout << pos << endl;
pos = text.find("Water");
if(pos == text.npos)
cout << "Not Found" << endl;
return 0;
}

下面是输出:

1
2
3
4
╭─fire@butterfly ~/codeSet/CPPCode  
╰─➤ ./a.out
1
Not Found

本来是不想写基础操作的博客的,但是最近老是忘,于是就写了,到时候再忘了也方便自己查找。
本篇完。

评论



愿火焰指引你