C++标准库string

定义和初始化

string s1 默认初始化,s1是一个空串
string s2(s1) s2是s1的副本
string s2 = s1 等价于s2(s1),s2是s1的副本
string s3("value") s3是字面值"value"的副本,除了字面值最后的那个空字符外
string s3 = "value" 等价于s3("value"),s3是字面值"value"的副本
string s4(n, 'c') 把s4初始化为由连续n个字符c组成的串

直接初始化和拷贝初始化

#include<iostream>
#include<string>
using namespace std;
int main()
{
string s1; // 默认初始化,空字符串
string s2("haha"); // 直接初始化
string s3 = "haha"; // 拷贝初始化
string s4(10, 'a'); // 直接初始化
cout << s1 << endl
<< s2 << endl
<< s3 << endl
<< s4 << endl;
system("pause");
return 0;
}

程序输出结果


haha
haha
aaaaaaaaaa
请按任意键继续. . .

string对象上的操作

读写string对象

  • 写入一个字符串。
#include<iostream>
#include<string>
using namespace std;
int main()
{
string s;
cin >> s;
cout << s << endl;
system("pause");
return 0;
}

程序输出结果

hello world
hello
请按任意键继续. . .
  • 写入两个字符串。
#include<iostream>
#include<string>
using namespace std;
int main()
{
string s1, s2;
cin >> s1 >> s2;
cout << s1 << s2 << endl;
system("pause");
return 0;
}

程序输出结果

hello world
helloworld
请按任意键继续. . .
  • 读取未知数量的string对象
#include<iostream>
#include<string>
using namespace std;
int main()
{
string word;
while (cin >> word)
cout << word << endl; system("pause");
return 0;
}

程序输出结果

hi
hi
visual
visual
studio
studio
^Z
请按任意键继续. . .

使用ctrl + Z结束输入。

使用getline读取一整行

保留字符串中的空白符,从给定的输入流中读入内容,直到遇到换行符位置,然后把所读的内容存入到string对象中。

#include<iostream>
#include<string>
using namespace std; int main()
{
string line;
while (getline(cin, line))
cout << line; system("pause");
return 0;
}

程序输出结果

hello hi !!!
hello hi !!!
wooohhh woc
wooohhh woc
^Z
请按任意键继续. . .
  • 只输出非空的行
#include<iostream>
#include<string>
using namespace std; int main()
{
string line;
while (getline(cin, line))
// 只输出非空的行
if(!line.empty())
cout << line; system("pause");
return 0;
}
  • 只输出超过10个字符的行
#include<iostream>
#include<string>
using namespace std; int main()
{
string line;
while (getline(cin, line))
// 只输出超过10个字符的行
if (line.size()>10)
cout << line; system("pause");
return 0;
}

程序输出结果

hello
hello world
hello world
^Z
请按任意键继续. . .

string对象相加

#include<iostream>
#include<string>
using namespace std;
int main()
{
string s1 = "hello";
string s2 = " world\n";
//string s3 = "hello" + " world\n"; //错误
string s3 = s1 + s2;
string s4 = s1 + " haha\n"; //正确,字面值可以和string对象相加
cout << s3 << endl;
cout << s4 << endl;
system("pause");
return 0;
}

程序运行结果

hello world

hello haha

请按任意键继续. . .

处理string对象中的字符

  • cctype头文| isalnum(c) | 如果c是字母或数字,则返回True |

    |--------------|------------------------------------------------------|

    | isalpha(c) | 如果c是字母,则返回true |

    | iscntrl(c) | 如果c是控制字符,则返回true |

    | isdigit(c) | 如果c是数字,则返回true |

    | isgraph(c) | 如果c不是空格,但可打印,则为true |

    | islower(c) | 如果c是小写字母,则为true |

    | isprint(c) | 如果c是可打印字符,则为true |

    | ispunct(c) | 如果c是标点符号,则为true |

    | isspace(c) | 如果c是空白是否,则为true |

    | isupper(c) | 如果c是大写字母,则为true |

    | isxdigit(c) | 如果c是十六进制的数,则为true |

    | tolower(c) | 如果c是大写字母,返回其小写字母的形式,否则直接返回c |

    | toupper(c) | 如果c是小写字母,返回其大写字母的形式,否则直接返回c |

    件中的函数

  • 把string对象中的字符每行打印出来

#include<iostream>
#include<string>
using namespace std;
int main()
{
string s1 = "some string";
cout << "method a" << endl;
for (auto c : s1)
cout << c << endl;
//that equals to
cout << "method b" << endl;
for (int i = 0; i < s1.size(); ++i)
cout << s1[i] << endl; // 通过下标索引
system("pause");
return 0;
}

程序输出结果

method a
s
o
m
e s
t
r
i
n
g
method b
s
o
m
e s
t
r
i
n
g
请按任意键继续. . .
  • 统计string对象中标点符号的个数
#include<iostream>
#include<string>
using namespace std;
int main()
{
string s1 = "hello, world!!!";
decltype(s1.size()) count = 0;
for (auto c : s1)
if (ispunct(c))
++count;
cout << s1 + "中共有"
<<count
<<"个标点符号" << endl;
system("pause");
return 0;
}

程序输出结果

hello, world!!!中共有4个标点符号
请按任意键继续. . .

当然还可以实现其他很多功能,就不一一列举。

C++标准库string的更多相关文章

  1. C++标准库string类型

    string类型支持长度可变的字符串,C++标准库将负责管理与存储字符相关的内存,以及提供各种有用的操作.标准库string类型的目的就是满足对字符串的一般应用. 本文地址:http://www.cn ...

  2. C++标准库<string>简单总结

    C++标准库<string>简单总结 在C++中,如果需要对字符串进行处理,那么它自带的标准库<string>无疑是最好的选择,它实现了很多常用的字符处理函数. 要想使用标准C ...

  3. c/c++ 标准库 string

    c/c++ 标准库 string 标准库 string的小例子 test1~test10 #include <iostream> using namespace std; int main ...

  4. 实现C++标准库string类的简单版本

    代码如下: #ifndef STRING_H #define STRING_H #include <cassert> #include <utility> #include & ...

  5. C 标准库 - string.h

    C 标准库 - string.h This header file defines several functions to manipulate C strings and arrays. stri ...

  6. 标准库string与C风格字符串

    返回字符串的长度 string标准库 #include<iostream> #include<cstring> using namespace std; int main() ...

  7. 【C++ Primer每日刷】之三 标准库 string 类型

    标准库 string 类型 string 类型支持长度可变的字符串.C++ 标准库将负责管理与存储字符相关的内存,以及提供各种实用的操作.标准库string 类型的目的就是满足对字符串的一般应用. 与 ...

  8. 把《c++ primer》读薄(3-1 标准库string类型初探)

    督促读书,总结精华,提炼笔记,抛砖引玉,有不合适的地方,欢迎留言指正. 问题1:养成一个好习惯,在头文件中只定义确实需要的东西 using namespace std; //建议需要什么再using声 ...

  9. C++ 标准库string字符串的截取

    标准库的string有一个substr函数用来截取子字符串.一般使用时传入两个参数,第一个是开始的坐标(第一个字符是0),第二个是截取的长度. #include <iostream> #i ...

随机推荐

  1. Linux下SVN+多个Tomcat自动部署

    项目中都是jsp开发,所以用到Tomcat. 在我文章中也写过多个Tomcat 的部署,具体可以参考:http://www.cnblogs.com/magmell/p/7045193.html SVN ...

  2. 【Android Developers Training】 106. 创建并检测地理围栏

    注:本文翻译自Google官方的Android Developers Training文档,译者技术一般,由于喜爱安卓而产生了翻译的念头,纯属个人兴趣爱好. 原文链接:http://developer ...

  3. java桥连接sql server之登录验证及对数据库增删改查

    一:步骤 1.sql server建立数据库和相关表 2.建立数据源  (1).打开控制面板找到管理,打开ODBC选项或直接搜索数据源  (2).打开数据源配置后点击添加,选择sql server点击 ...

  4. Chrome DevTools 调研笔记

    1  说明 此篇文章针对Chrome DevTools常用功能进行调研分析.描述了每个功能点能实现的功能.应用场景和详细操作. 2  Elements 2.1  功能 检查和实时更新页面的HTML与C ...

  5. PHP机器学习库php-ml的简单测试和使用

    php-ml是一个使用PHP编写的机器学习库.虽然我们知道,python或者是C++提供了更多机器学习的库,但实际上,他们大多都略显复杂,配置起来让很多新手感到绝望.php-ml这个机器学习库虽然没有 ...

  6. 微信公众平台——token验证php版

    这几天开始接触微信公众号的开发,注册这些就不说了,我是先弄了个测试号用着.进入正题 所谓token验证,其实就是微信服务器向自己要用到的服务器url发送一段数据,其中有一个参数$_GET['echho ...

  7. spring框架-spring.xml配置文件

    运行的时候会报错的,因为写到<bean>标签里面去了,肯定会报错的,要记得把注释删掉,就不会报错了,这样写注释是为了方便下次自己看. <?xml version="1.0& ...

  8. 高效测试用例组织算法pairwise之Python实现

    ------------------------------------------本文专为<光荣之路培训 >原创,如有转载请注明出处--------------------------- ...

  9. app耗电优化之二 使用电源管理来安排任务

    PowerManager 电源管理(电源使用管理).主要管理设备启动,保持活动,休眠,唤醒.其中为了保持任务,提供了PowerManager.WakeLock(唤醒锁).执行任务时持有这个唤醒锁,就可 ...

  10. Struts2从头到脚--学习笔记(自认为比较重要的)

    一. Struts2框架介绍 Struts2是一个基于MVC设计模式的Web应用框架,它本质上相当于一个servlet,在MVC设计模式中,Struts2作为控制器(Controller)来建立模型与 ...