C++学习(9)string类

1.string类对象的初始化

– string s1("Hello");
– string month = "March";
– string s2(8,’x’);
可以将字符赋值给string对象

  • string对象的长度用成员函数length()读取
    string s("hello");
    cout << s.length() << endl;
  • string支持流读取运算符
    – string stringObject;
    – cin >> stringObject;
  • string支持getline函数
    – string s;
    – getline(cin ,s);

2.string的赋值和连接

• 用 = 赋值
– string s1("cat"), s2;
– s2 = s1;
• 用 assign 成员函数复制
– string s1("cat"), s3;
– s3.assign(s1);
• 用 assign 成员函数部分复制
– string s1("catpig"), s3;
– s3.assign(s1, 1, 3);
– //从s1 中下标为1的字符开始复制3个字符给s3


• 单个字符复制
s2[5] = s1[3] = ‘a’;
• 逐个访问string对象中的字符
string s1("Hello");
for(int i=0;i<s1.length();i++)
cout << s1.at(i) << endl;
• 成员函数at会做范围检查,如果超出范围,会抛出out_of_range异常,而下标运算符[]不做范围检查。


• 用 + 运算符连接字符串
string s1("good "), s2("morning! ");
s1 += s2;
cout << s1;
• 用成员函数 append 连接字符串
string s1("good "), s2("morning! ");
s1.append(s2);
cout << s1;
s2.append(s1, 3, s1.size());//s1.size(), s1字符数
cout << s2;
// 下标为3开始, s1.size()个字符,如果字符串内没有足够字符,则复制到字符串最后一个字符

3.比较string

• 用关系运算符比较string的大小
– == , >, >=, <, <=, !=
– 返回值都是bool类型,成立返回true, 否则返回false
– 例如:

string s1("hello"),s2("hello"),s3("hell");
bool b = (s1 == s2);
cout << b << endl;
b = (s1 == s3);
cout << b << endl;
b = (s1 > s3);
cout << b << endl;
  • 用成员函数compare比较string的大小
string s1("hello"),s2("hello"),s3("hell");
int f1 = s1.compare(s2);
int f2 = s1.compare(s3);
int f3 = s3.compare(s1);
int f4 = s1.compare(1,2,s3,0,3); //s1 1-2; s3 0-3
int f5 = s1.compare(0,s1.size(),s3);//s1 0-end
cout << f1 << endl << f2 << endl << f3 << endl;
cout << f4 << endl << f5 << endl;

4.查删改

  • 子串
    成员函数substr
string s1("hello world"), s2;
s2 = s1.substr(4, 5); // 下标4开始5个字符
cout << s2 << endl;
  • 交换string
    成员函数swap
  • 寻找string中的字符
    • 成员函数 find()
    – string s1("hello world");
    – s1.find("lo");
    – 在s1中从前向后查找 “lo” 第一次出现的地方,如果找到,返回 “lo”开始的位置,即 l 所在的位置下标。如果找不到,返string::npos (string中定义的静态常量)
    • 成员函数 rfind()
    – string s1("hello world");
    – s1.rfind("lo");
    – 在s1中从后向前查找 “lo” 第一次出现的地方,如果找到,返回 “lo”开始的位置,即 l 所在的位置下标。如果找不到,返string::npos 。

寻找string中的字符
string s1("hello worlld");
cout << s1.find("ll") << endl;
cout << s1.find("abc") << endl;
cout << s1.rfind("ll") << endl;
cout << s1.rfind("abc") << endl;
cout << s1.find_first_of("abcde") << endl;
cout << s1.find_first_of("abc") << endl;
cout << s1.find_last_of("abcde") << endl;
cout << s1.find_last_of("abc") << endl;
cout << s1.find_first_not_of("abcde") << endl;
cout << s1.find_first_not_of("hello world") << endl;
cout << s1.find_last_not_of("abcde") << endl;
cout << s1.find_last_not_of("hello world") << endl;
  • 删除string中的字符
    • 成员函数erase()
    string s1("hello worlld");
    s1.erase(5);
    cout << s1;
    cout << s1.length();
    cout << s1.size();
    // 去掉下标 5 及之后的字符
    输出:
    hello55
  • 替换string中字符
    • 成员函数 replace()
    string s1("hello world");
    s1.replace(2,3, “haha");
    cout << s1;
    //将s1中下标2 开始的3个字符换成“haha”
    输出:
    hehaha world
  • 在string中插入字符
    • 成员函数insert()
    string s1("hello world");
    string s2(“show insert");
    s1.insert(5,s2); // 将s2插入s1下标5的位置
    cout << s1 << endl;
    s1.insert(2,s2,5,3);
    //将s2中下标5开始的3个字符插入s1下标2的位置
    cout << s1 << endl;
    输出:
    helloshow insert world
    heinslloshow insert world

  • 转换成C语言式char *字符串
    • 成员函数 c_str()
    string s1("hello world");
    printf("%s\n", s1.c_str());
    // s1.c_str() 返回传统的const char * 类型字符串,且该字符串以‘\0’结尾。
    输出:
    hello world
  • 字符串拷贝
    • 成员函数copy()
    string s1("hello world");
    int len = s1.length();
    char * p2 = new char[len+1];
    s1.copy(p2,5,0);
    p2[5]=0;
    cout << p2 << endl;
    // s1.copy(p2,5,0) 从s1的下标0的字符开始制作一个最长5个字符
    长度的字符串副本并将其赋值给p2。返回值表明实际复制字符串
    的长度。
    输出:
    hello
  • 字符串流处理
string input("Input test 123 4.7 A");
istringstream inputString(input);
string string1, string2;
int i;
double d;
char c;
inputString >> string1 >> string2 >> i >> d >> c;
cout << string1 << endl << string2 << endl;
cout << i << endl << d << endl << c << endl;
long L;
if (inputString >> L) cout << "long\n";
else cout << "empty\n";
ostringstream outputString;
int a = 10;
outputString << "This " << a << "ok" << endl;
cout << outputString.str();
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容