要相信别人能做出来自己一定可以做出来,只不过是时间没到而已
目录
string类对象capacity操作
reserve()保留
resize()
string类对象元素访问操作
operator[]和at()
operator[]和at()函数有关越界访问
string类对象修饰语操作
assign()
insert()
erase()
replace()
replace()函数的应用
string类字符串操作
substr() 截取子字符串
find()函数
npos成员常量
find()和substr()函数结合使用
rfind()函数
find()和rfind()的区别
题目—字符串最后一个单词的长度
getline()
find_first_of()函数
find_last_of()函数
find_first_of()和find_last_of()
我们接着上一章的学习。
从上一章节介绍了,size()和length()记录的是string类对象的字符串长度, max_size()指的是string类容纳的最大长度,capacith指的是已分配存储的大小,clear表示清空string类对象。
这里只限定在vs环境下,不同的环境下的处理不同
C++中的reserve函数被广泛用于容器类中,它的作用是预留一定量的内存空间来存储元素,以提高程序的效率。这个函数只影响容器的capacity(容量),而不改变该容器包含的元素个数。使用reserve函数可以避免频繁的动态内存分配和释放,减少内存碎片的产生,以提高代码的效率。
c++中resize函数是c++标准库vector容器的一个成员函数,用于改变vector的大小。它可以使vector变大或变小,根据变化的大小,它可能会在vector的末尾添加新元素,或者从末尾删除元素。
第一个参数表示新的大小,第二个可选参数表示插入的新值(缺省为默认构造函数值,可以是一个默认值,也可以是一个可变参数模板包)。
这里给字符串长度设置成200,后面直接初始化成'\0',capacity肯定是大于200的。
第二个函数不仅开空间,而且 填值初始化为'x'。
再次调用resize()函数是不会改变capacity的值,因为你想想,开辟了200个字符的空间,然后只需要20的空间,剩下的180空间直接交给操作系统了,那这样造成了极大的浪费,一般我们都是拷贝那20空间给新的字符串,然后free那剩下的空间。而不是这样直接丢弃,编译器是不会允许你这样做的。所以capacity是不可改变的。
这里只限定在vs环境下,不同的环境下的处理不同,我们调用resize()函数至字符串长度为0,capacity也是不改变的。
int main()
{
string s1("chenle");
s1.at(0)='z';
cout << s1 << endl;
s1[0] = 'z';
cout << s1 << endl;
return 0;
}
int main()
{
string s1("chenle");
s1.at(0)='z';
cout << s1 << endl;
s1[0] = 'z';
cout << s1 << endl;
s1[15];
s1.at(15);
return 0;
}
at()函数越界抛异常
at()函数调用如果越界,那么会抛异常,用下面的格式就相对于调用operator[]函数相对温和一点的处理方式。
int main()
{
try {
string s1("hello world");
s1.at(0) = 'x';
cout << s1 << endl;
//s1[15]; // 暴力处理
s1.at(15); // 温和的错误处理
}
catch (const exception& e)
{
cout << e.what() << endl;
}
return 0;
}
前面一篇文章我们讲了上面三个函数operator+=(),append(),push_back()。
int main()
{
string s1("chenle");
s1 += ("xxxxxx");
cout << s1 << endl;
s1.assign("sssssss");
cout << s1 << endl;
return 0;
}
int main()
{
string s1("chenle");
//删除第五个字符后面的一长度的字符
s1.erase(5, 1);
cout << s1 << endl;
return 0;
}
string s1("chenle");
cout << s1 << endl;
s1.erase(3);
cout << s1 << endl;
int main()
{
string s2("hello world");
/*s2.erase(0, 1);
cout << s2 << endl;*/
//利用迭代器,begin()函数,那么删除begin()所指的当前位置的字符
s2.erase(s2.begin());
//参数不是迭代器,是个数值,那么删除第三个元素后面的所有字符
s2.erase(3);
cout << s2 << endl;
return 0;
}
int main()
{
//将所有的空格都改成%20
string s1("hello world hello bit");
string s3;
for (auto ch : s1)
{
if (ch != ' ')
{
s3 += ch;
}
else
{
s3 += "%20";
}
}
s1 = s3;
cout << s1 << endl;
return 0;
}
注意:这里需要创建一个新的string对象被子字符串初始化,因为截取字符串不改变原先的字符串。
int main()
{
string s1("chenle zhangyaunfei");
cout << s1 << endl;
string s2;
s2=s1.substr(7, 12);
cout << s2 << endl;
return 0;
}
这里我需要介绍一下npos
这里我需要打印出这段网址中的协议http。我们想要找到://,那么用string::npos,如果find函数找不到://,那么就返回string::npos。我们可以看到我们依次遍历找到了://,那么不返回string::npos,if判断为真,然后截取[0,pos1)字符串字段,然后打印出。
int main()
{
string url = "https://legacy.cplusplus.com/reference/string/string/";
// 协议pos1 域名protocol 资源名
size_t pos1 = url.find("://");
string protocol;
if (pos1 != string::npos)
{
protocol = url.substr(0, pos1);
}
cout << protocol << endl;
return 0;
}
一个网址由三个部分组成,协议,域名,资源名组成,我们要分别打印出协议的部分,域名的部分,资源名的部分,该如何使用find(),substr()函数呢?
int main()
{
string url = "https://legacy.cplusplus.com/reference/string/string/";
// 协议protocol 域名 资源名
size_t pos1 = url.find("://");
string protocol;
if (pos1 != string::npos)
{
protocol = url.substr(0, pos1);
}
cout << protocol << endl;
string domain;//域名
string uri;//资源名
size_t pos2 = url.find('/', pos1 + 3);//从pos1+3位置开始找'/'
if (pos2 != string::npos)
{
domain = url.substr(pos1+3,pos2-(pos1+3));//从pos1+3的位置,截取(pos2-(pos1+3))的长度,读到遇到第一个'/'位置
uri = url.substr(pos2 + 1);//直接从pos2+1位置后读到最后即可
}
cout << domain << endl;
cout << uri << endl;
return 0;
}
逆向查字符或字符串,若查找成功,则返回逆向查到的第一个字符下标或第一个字符串首字符的下标;若查找失败,无法返回正确的下标。逆向查到的第一个字符或第一个字符串也就是正向的最后一个。rfind()函数的返回值为无符号整数类型。(rfind从后向前逆向查,但匹配是正向匹配的,可以参考下面代码多理解。)
str.rfind(“fab”,4);//从下标为4开始逆向查找,正向匹配,结果找不到,返回npos。
str.find(“fab”);//如果没有第二个参数,默认从下标npos开始。npos定义为保证大于任何有效下标的值。结果为5。
#include
using namespace std;
int main()
{
string str="abcdefab";
cout<
#include
using namespace std;
int main()
{
string str1;
// 不要使用cin>>line,因为会它遇到空格就结束了
// while(cin>>line)
while(getline(cin, str1))
{
size_t pos1=str1.rfind(' ');
cout<
遇到这种情况我们用getline()这个非成员函数来进行操作
getline()函数读取一整行。
int main()
{
string str("Please, replace the vowels in this sentence by asterisks.");
size_t found = str.find_first_of("abc");
while (found != string::npos)
{
str[found] = '*';//找到abc字符那么就改成*
found = str.find_first_of("abc", found + 1);
//继续从found后面一个字符开始找abc任意一个
}
cout << str << '\n';
return 0;
}
- 1、find_first_of()函数
- 正向查找在原字符串中第一个与指定字符串(或字符)中的某个字符匹配的字符,返回它的位置。若查找失败,则返回npos。(npos定义为保证大于任何有效下标的值。)
- 2、find_last_of()函数
- 逆向查找在原字符串中最后一个与指定字符串(或字符)中的某个字符匹配的字符,返回它的位置。若查找失败,则返回npos。(npos定义为保证大于任何有效下标的值。)
#include
using namespace std;
int main()
{
string str="abcdefab";
cout<
要相信别人能做出来自己一定可以做出来,只不过是时间没到而已