C++字符串string容器(构造、赋值、拼接、查找、替换、比较、存取、插入、删除、子串)

简介: C++字符串string容器(构造、赋值、拼接、查找、替换、比较、存取、插入、删除、子串)

一、字符串构造

// 字符串的构造
void test01() {
    //默认构造
    string s1;
    //使用char*字符串构造
    const char *str = "hello world";
    string s2(str);
    cout << "s2=" << s2 << endl;
    //使用string对象初始化
    string s3(s2);
    cout << "s3=" << s3 << endl;
    //使用n个字符初始化
    string s4(10, 'a');
    cout << "s4=" << s4 << endl;
};

二、字符串赋值

/**
 * 赋值操作
 * string& operator=(const char* s);//char*类型字符串 赋值给当前的字符串
string& operator=(const string &s);//把字符串s赋给当前的字符串
string& operator=(char c);//字符值给当前的字符串
string& assign(const char *s);//把字符串s赋给当前的字符串
string& assign(const char *s, int n);//把字符串s的前n个字符赋给当前的字符串
string& assign(const string &s);//把字符串s赋给当前字符串
string& assign(int n, char c);//用n个字符赋给当前字符串
 */
void test02() {
    string str1;
    str1 = "hello world";
    cout << "str1 = " << str1 << endl;
    string str2;
    str2 = str1;
    cout << "str2 = " << str2 << endl;
    string str3;
    str3 = 'a';
    cout << "str3 = " << str3 << endl;
    string str4;
    str4.assign("hello C++");
    cout << "str4 = " << str4 << endl;
    string str5;
    str5.assign("hello C++", 5);
    cout << "str5 = " << str5 << endl;
    string str6;
    str6.assign(str5);
    cout << "str6 = " << str6 << endl;
    string str7;
    str7.assign(10, 'e');
    cout << "str7 = " << str7 << endl;
};

三、字符串拼接

//string字符串拼接
/**
 *string& operator+=(const char* str);//重载+=操作符
string& operator+=(const char c);//重载+=操作符
string& operator+=(const string& str);//重载+=操作符
string& append(const char *s);//把字符串s连接到当前字符串结尾
string& append(const char *s, int n);//把字符串s的前n个字符连接到当前字符串结尾
string& append(const string &s);//同operator+=(const string& str)
string& append(const string &s,int pos,int n); //字符s中从pos开始的n个字符连接到字符串结尾
  */
void test03() {
    string str1 = "我";
    str1 += "爱玩游戏";
    cout << "str1 = " << str1 << endl;
    str1 += ":";
    cout << "str1 = " << str1 << endl;
    string str2 = "LOL DNF";
    str1 += str2;
    cout << "str1 = " << str1 << endl;
 
    string str3 = "I";
    str3.assign(" love ");
    cout << "str3 = " << str3 << endl;
 
    str3.append("game abcde", 5);
    cout << "str3 = " << str3 << endl;
 
    // str3.append(str2);
    str3.append(str2, 0, 3);
    cout << "str3 = " << str3 << endl;
 
};

四、字符串查找

//字符串查找
void test04() {
    string str = "abcdefgde";
    // 从左往右查
    int pos = str.find("de");
    cout << "pos = " << pos << endl;
    //从右往左查
    pos = str.rfind("de");
    cout << "rfind pos = " << pos << endl;
};

五、字符串替换

//字符串替换
void test05() {
    string str1 = "abcdefg";
    //从1位置起2个字符,替换为"1231231"
    str1.replace(1, 2, "1231231");
    // str1=a1231231defg
    cout << "str1=" << str1 << endl;
};

六、字符串比较

//字符串比较
// = 返回 0
// > 返回 1
//< 返回 -1
void test06() {
    string str1 = "aello";
    string str2 = "hello";
    if (str1.compare(str2) == 0) {
        cout << "str1等于str2" << endl;
    } else if (str1.compare(str2) > 0) {
        cout << "str1大于str2" << endl;
    } else {
        cout << "str1小于str2" << endl;
    }
};

七、字符串存取

//string 字符存取
void test07() {
    string str = "hello";
    // cout << "str=" << str << endl;
    //1、通过[]访问单个字符
    for (int i = 0; i < str.size(); ++i) {
        cout << str[i] << " ";
    }
    cout << endl;
    //2、通过at方法访问单个字符
    for (int i = 0; i < str.size(); ++i) {
        cout << str.at(i) << " ";
    }
    cout << endl;
    //修改单个字符
    str[0] = 'x';
    str.at(1) = 'x';
    // xxllo
    cout << "str=" << str << endl;
}

八、字符串插入删除

/*
 * string& insert(int pos, const char* s);//插入字符串
string& insert(int pos, const string& str);//插入字符串
string& insert(int pos, int n, char c);//在指定位置插入n个字符
string& erase(int pos, int n = npos);//删除从Pos开始的n个字符
 */
//字符串的插入和删除
void test08() {
    string str = "hello";
//     插入
    str.insert(1, "111");
    // h111ello
    cout << str << endl;
    //hello
    str.erase(1, 3);
    cout << str << endl;
}

九、子串

//string子串
void test09() {
    string str = "abcdef";
    string subStr = str.substr(1, 3);
    // subStr=bcd
    cout << "subStr=" << subStr << endl;
 
    string email = "zhangsan@sina.com";
    //从邮件地址中获取用户名信息
    int pos = email.find("@");
    cout<<pos<<endl;
    string userName = email.substr(0, pos);
    cout << userName << endl;
}

十、测试

#include <iostream>
#include <string>
 
using namespace std;
 
// 字符串的构造
void test01() {
    //默认构造
    string s1;
    //使用char*字符串构造
    const char *str = "hello world";
    string s2(str);
    cout << "s2=" << s2 << endl;
    //使用string对象初始化
    string s3(s2);
    cout << "s3=" << s3 << endl;
    //使用n个字符初始化
    string s4(10, 'a');
    cout << "s4=" << s4 << endl;
};
 
/**
 * 赋值操作
 * string& operator=(const char* s);//char*类型字符串 赋值给当前的字符串
string& operator=(const string &s);//把字符串s赋给当前的字符串
string& operator=(char c);//字符值给当前的字符串
string& assign(const char *s);//把字符串s赋给当前的字符串
string& assign(const char *s, int n);//把字符串s的前n个字符赋给当前的字符串
string& assign(const string &s);//把字符串s赋给当前字符串
string& assign(int n, char c);//用n个字符赋给当前字符串
 */
void test02() {
    string str1;
    str1 = "hello world";
    cout << "str1 = " << str1 << endl;
    string str2;
    str2 = str1;
    cout << "str2 = " << str2 << endl;
    string str3;
    str3 = 'a';
    cout << "str3 = " << str3 << endl;
    string str4;
    str4.assign("hello C++");
    cout << "str4 = " << str4 << endl;
    string str5;
    str5.assign("hello C++", 5);
    cout << "str5 = " << str5 << endl;
    string str6;
    str6.assign(str5);
    cout << "str6 = " << str6 << endl;
    string str7;
    str7.assign(10, 'e');
    cout << "str7 = " << str7 << endl;
};
//string字符串拼接
/**
 *string& operator+=(const char* str);//重载+=操作符
string& operator+=(const char c);//重载+=操作符
string& operator+=(const string& str);//重载+=操作符
string& append(const char *s);//把字符串s连接到当前字符串结尾
string& append(const char *s, int n);//把字符串s的前n个字符连接到当前字符串结尾
string& append(const string &s);//同operator+=(const string& str)
string& append(const string &s,int pos,int n); //字符s中从pos开始的n个字符连接到字符串结尾
  */
void test03() {
    string str1 = "我";
    str1 += "爱玩游戏";
    cout << "str1 = " << str1 << endl;
    str1 += ":";
    cout << "str1 = " << str1 << endl;
    string str2 = "LOL DNF";
    str1 += str2;
    cout << "str1 = " << str1 << endl;
 
    string str3 = "I";
    str3.assign(" love ");
    cout << "str3 = " << str3 << endl;
 
    str3.append("game abcde", 5);
    cout << "str3 = " << str3 << endl;
 
    // str3.append(str2);
    str3.append(str2, 0, 3);
    cout << "str3 = " << str3 << endl;
 
};
 
//字符串查找
void test04() {
    string str = "abcdefgde";
    // 从左往右查
    int pos = str.find("de");
    cout << "pos = " << pos << endl;
    //从右往左查
    pos = str.rfind("de");
    cout << "rfind pos = " << pos << endl;
};
 
//字符串替换
void test05() {
    string str1 = "abcdefg";
    //从1位置起2个字符,替换为"1231231"
    str1.replace(1, 2, "1231231");
    // str1=a1231231defg
    cout << "str1=" << str1 << endl;
};
 
//字符串比较
// = 返回 0
// > 返回 1
//< 返回 -1
void test06() {
    string str1 = "aello";
    string str2 = "hello";
    if (str1.compare(str2) == 0) {
        cout << "str1等于str2" << endl;
    } else if (str1.compare(str2) > 0) {
        cout << "str1大于str2" << endl;
    } else {
        cout << "str1小于str2" << endl;
    }
};
 
    //string 字符存取
    void test07() {
        string str = "hello";
        // cout << "str=" << str << endl;
        //1、通过[]访问单个字符
        for (int i = 0; i < str.size(); ++i) {
            cout << str[i] << " ";
        }
        cout << endl;
        //2、通过at方法访问单个字符
        for (int i = 0; i < str.size(); ++i) {
            cout << str.at(i) << " ";
        }
        cout << endl;
        //修改单个字符
        str[0] = 'x';
        str.at(1) = 'x';
        // xxllo
        cout << "str=" << str << endl;
    }
/*
 * string& insert(int pos, const char* s);//插入字符串
string& insert(int pos, const string& str);//插入字符串
string& insert(int pos, int n, char c);//在指定位置插入n个字符
string& erase(int pos, int n = npos);//删除从Pos开始的n个字符
 */
//字符串的插入和删除
void test08() {
    string str = "hello";
//     插入
    str.insert(1, "111");
    // h111ello
    cout << str << endl;
    //hello
    str.erase(1, 3);
    cout << str << endl;
}
 
//string子串
void test09() {
    string str = "abcdef";
    string subStr = str.substr(1, 3);
    // subStr=bcd
    cout << "subStr=" << subStr << endl;
 
    string email = "zhangsan@sina.com";
    //从邮件地址中获取用户名信息
    int pos = email.find("@");
    cout<<pos<<endl;
    string userName = email.substr(0, pos);
    cout << userName << endl;
}
 
int main() {
    // test01();
    // test02();
    // test03();
    // test04();
    // test05();
    // test06();
    // test07();
    // test08();
    test09();
    system("pause");
    return 0;
}
 
subStr=bcd
8
zhangsan

相关文章
|
27天前
|
存储 设计模式 C++
【C++】优先级队列(容器适配器)
本文介绍了C++ STL中的线性容器及其适配器,包括栈、队列和优先队列的设计与实现。详细解析了`deque`的特点和存储结构,以及如何利用`deque`实现栈、队列和优先队列。通过自定义命名空间和类模板,展示了如何模拟实现这些容器适配器,重点讲解了优先队列的内部机制,如堆的构建与维护方法。
32 0
|
2月前
|
存储 搜索推荐 C++
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
59 2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
|
2月前
|
存储 C++ 容器
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器1
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
65 5
|
2月前
|
存储 编译器 C++
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
73 2
|
2月前
|
缓存 网络协议 API
C/C++ StringToAddress(字符串转 boost::asio::ip::address)
通过上述步骤和示例代码,你可以轻松地在C++项目中实现从字符串到 `boost::asio::ip::address`的转换,从而充分利用Boost.Asio库进行网络编程。
78 0
|
2月前
|
编译器 C语言 C++
C/C++数字与字符串互相转换
C/C++数字与字符串互相转换
|
24天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
38 2
|
1月前
|
存储 编译器 C++
【c++】类和对象(下)(取地址运算符重载、深究构造函数、类型转换、static修饰成员、友元、内部类、匿名对象)
本文介绍了C++中类和对象的高级特性,包括取地址运算符重载、构造函数的初始化列表、类型转换、static修饰成员、友元、内部类及匿名对象等内容。文章详细解释了每个概念的使用方法和注意事项,帮助读者深入了解C++面向对象编程的核心机制。
83 5
|
1月前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
80 4
|
1月前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
87 4
下一篇
DataWorks