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

相关文章
|
2月前
|
搜索推荐 编译器 C语言
【C++核心】特殊的元素集合-数组与字符串详解
这篇文章详细讲解了C++中数组和字符串的基本概念、操作和应用,包括一维数组、二维数组的定义和使用,以及C风格字符串和C++字符串类的对比。
78 4
|
3月前
|
安全 Java API
【Java字符串操作秘籍】StringBuffer与StringBuilder的终极对决!
【8月更文挑战第25天】在Java中处理字符串时,经常需要修改字符串,但由于`String`对象的不可变性,频繁修改会导致内存浪费和性能下降。为此,Java提供了`StringBuffer`和`StringBuilder`两个类来操作可变字符串序列。`StringBuffer`是线程安全的,适用于多线程环境,但性能略低;`StringBuilder`非线程安全,但在单线程环境中性能更优。两者基本用法相似,通过`append`等方法构建和修改字符串。
64 1
|
4天前
|
索引 Python
String(字符串)
String(字符串)。
11 3
|
26天前
|
NoSQL Redis
Redis 字符串(String)
10月更文挑战第16天
36 4
|
1月前
|
canal 安全 索引
(StringBuffer和StringBuilder)以及回文串,字符串经典习题
(StringBuffer和StringBuilder)以及回文串,字符串经典习题
33 5
|
1月前
|
存储 JavaScript 前端开发
JavaScript 字符串(String) 对象
JavaScript 字符串(String) 对象
41 3
|
1月前
|
缓存 网络协议 API
C/C++ StringToAddress(字符串转 boost::asio::ip::address)
通过上述步骤和示例代码,你可以轻松地在C++项目中实现从字符串到 `boost::asio::ip::address`的转换,从而充分利用Boost.Asio库进行网络编程。
52 0
|
1月前
|
编译器 C语言 C++
C/C++数字与字符串互相转换
C/C++数字与字符串互相转换
|
2月前
|
C++
HTML+JavaScript构建一个将C/C++定义的ANSI字符串转换为MASM32定义的DWUniCode字符串的工具
HTML+JavaScript构建一个将C/C++定义的ANSI字符串转换为MASM32定义的DWUniCode字符串的工具
|
2月前
|
存储 C++
C++(五)String 字符串类
本文档详细介绍了C++中的`string`类,包括定义、初始化、字符串比较及数值与字符串之间的转换方法。`string`类简化了字符串处理,提供了丰富的功能如字符串查找、比较、拼接和替换等。文档通过示例代码展示了如何使用这些功能,并介绍了如何将数值转换为字符串以及反之亦然的方法。此外,还展示了如何使用`string`数组存储和遍历多个字符串。