我是靠谱客的博主 温婉果汁,最近开发中收集的这篇文章主要介绍C++的字符串类,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

C++的字符串类

C语言中的字符串表示方式

  1. 字符串常量
  2. 字符指针
  3. 字符数组
  4. 字符串函数

C++的string类

  1. 定义方法

  2. 使用string类需要包含头文件

#include<iostream>
#include<string>

using namedpace std;
int main(int argc, const char* argv[])
{
    //变量 s1 只是定义但没有初始化,编译器会将默认值赋给 s1,默认值是"",即空字符串。
    string s1;
    //变量 s2 在定义的同时被初始化为"hello "与C风格的字符串不同,string 的结尾没有结束标志''。
    string s2 = "hello ";
    //变量 s3 在定义的时候直接用"world"进行初始化
    string s3("world");
    //变量 s4 被初始化为由 5 个's'字符组成的字符串,也就是"sssss"。
    string s4(5, 'a');
    //变量 s5 在定义的同时被初始化为"hello "与C风格的字符串不同,string 的结尾没有结束标志''。
    sting s5 = s2;
}

string的基本操作

  1. 转换为C风格的字符串
#include<cstdio>
#include<iostream>
#include<string>

string s2 ="hello";
printf("%sn", s2.c_str());
  1. 字符串的输入输出
#include<cstdio>
#include<iostream>
#include<string>

int main(int argc, const char* argv[])
{
    string s;
    cin >> s;
    cout << s << endl;
    
    return 0;
}

$ ./a.out 
hello world
hello
#运行结果显示输入运算符>>默认会忽略空格,遇到空格就认为输入结束
  1. 访问字符串中的字符
#include<iostream>
#include<string>

int main(int argc, const char* argv[])
{
    string s = "0123456789";
  for(int i=0; len=s.length(); i<len; i++){
    cout << s[i] << " ";
  }
  
  cout << endl;
  s[5] = 'V';
  cout << s << endl;
}
  1. 拼接
#include<iostream>
#include<string>
using namespace std;
int main(int argc, const char* argv[])
{
    string s1 = "hello ";
    string s2("world");
    string s3 = s1+s2;
    cout << s1 << s2 << endl;
    cout << s3 << endl;
    s1 += s2; //追加
    cout << s1 << endl;
    
}
  1. 比较
if(s3 == "hello world")
    cout << "s3 = hello world" << endl;
  1. 插入
#include<iostream>
#include<string>
using namespace std;
int main(int argc, const char* argv[])
{
    string s1, s2, s3;
    s1 = "nihao hello";
    s3 = "shijie ";
    s1.insert(6, s3);
    cout << s1 << endl;
    s2 = s1;
    s2.insert(s2.length(), "world");
    cout << s2<< endl;
    return 0;
}

运行结果

$ ./a.out 
nihao shijie hello 
nihao shijie hello world
  1. 字符串删除
#include<iostream>
#include<string>
using namespace std;
int main(int argc, const char* argv[])
{
    string s1, s2, s3;
    s1 = s2 = s3 = "0123456789";
    s2.erase(5);
    s3.erase(5, 3);
    cout << s1 << endl;
    cout << s2 << endl;
    cout << s3 << endl;
}
  1. 提取子字符串
#include <iostream>
#include <string>
using namespace std;
int main(){
    string s1 = "first second third";
    string s2;
    s2 = s1.substr(6, 6);
    cout<< s1 <<endl;
    cout<< s2 <<endl;
    return 0;
}
  1. 查找子字符串 - find()函数
size_t find (const string& str, size_t pos = 0) const;
size_t find (const char* s, size_t pos = 0) const;

第一个参数为待查找的子字符串,它可以是 string 字符串,也可以是C风格的字符串。

第二个参数为开始查找的位置(下标);如果不指明,则从第0个字符开始查找。

#include <iostream>
#include <string>
using namespace std;
int main()
{
    string s1, s2;
    s1 = "first second third";
    s2 = "second";
    int index = s1.find(s2, 5);
    if(index < s1.length())
        cout << "found at index:" << index << endl;
    else
        cout << "not found" << endl;
    return 0;
}
  1. rfind()
#include <iostream>
#include <string>
using namespace std;
int main()
{
    string s1, s2;
    s1 = "first second third";
    s2 = "second";
    int index = s1.rfind(s2, 10);
//  int index = s1.rfind(s2, 5);
    if(index < s1.length())
        cout << "found at index:" << index << endl;
    else
        cout << "not found" << endl;
    return 0;
}

最后

以上就是温婉果汁为你收集整理的C++的字符串类的全部内容,希望文章能够帮你解决C++的字符串类所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部