首页 热点专区 义务教育 高等教育 出国留学 考研考公

CString中Find函数与普通循环查找有什么区别吗?

发布网友 发布时间:2022-04-22 15:42

我来回答

3个回答

热心网友 时间:2022-07-12 04:40

呵呵:MSDN:的秒速如图The zero-based index of the first character in this CString object that matches the requested substring or characters; -1 if the substring or character is not found.
也就是基于下标为0的的查找;第一个是查找的字符,第二个是查找的开始位置;返回的是字符串的位置,如果为找到返回-1;大哥。。。。。。。。。。
于是csStr.Find('d'); //其实位置为0,可以找到明显为3;
。Find(‘d’,1)//明显是b开头可以找到。是3
下面的是csStr.Find('d',2); //可以还找到3
csStr.Find('d',3);//刚好从‘d’出来时找,当然可以为3
下面的都是-1;因为找不到。。因此返回-1

热心网友 时间:2022-07-12 04:41

通常来说,find函数用于寻找某个序列的在string中第一次出现的位置。

find函数有以下四种重载版本:
size_t find (const string& str, size_t pos = 0) const noexcept;
size_t find (const char* s, size_t pos = 0) const;
size_t find (const char* s, size_t pos, size_type n) const;
size_t find (char c, size_t pos = 0) const noexcept;
参数说明:
str/s/c:要寻找的序列,可以是字符串(版本1),也可以是字符串字面值或者说C风格字符串(版本2、3,在版本3中,所寻找的序列是从s[0]开始的前n个字符),也可以是字符(版本4)。
pos:从string的pos位置开始寻找(注意第一个位置是0)。
函数返回序列第一次出现的位置,如果没有找到则返回string::npos。

样例:(摘自cplusplus.com)
#include <iostream> // std::cout
#include <string> // std::string

int main ()
{
std::string str ("There are two needles in this haystack with needles.");
std::string str2 ("needle");

// different member versions of find in the same order as above:
std::size_t found = str.find(str2);
if (found!=std::string::npos)
std::cout << "first 'needle' found at: " << found << '\n';

found=str.find("needles are small",found+1,6);
if (found!=std::string::npos)
std::cout << "second 'needle' found at: " << found << '\n';

found=str.find("haystack");
if (found!=std::string::npos)
std::cout << "'haystack' also found at: " << found << '\n';

found=str.find('.');
if (found!=std::string::npos)
std::cout << "Period found at: " << found << '\n';

// let's replace the first needle:
str.replace(str.find(str2),str2.length(),"preposition");
std::cout << str << '\n';

return 0;
}
标准输出结果:
first 'needle' found at: 14
second 'needle' found at: 44
'haystack' also found at: 30
Period found at: 51
There are two prepositions in this haystack with needles.

热心网友 时间:2022-07-12 04:41

4,3,2,1,0

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com