(7)风色从零单排《C++ Primer》 string

来源:互联网 发布:战地3低配优化 编辑:程序博客网 时间:2024/04/29 06:10

初始化:

string s1string s2(s1)string s2 = s1string s3("value")string s3 = "value"string s4(n,'c')

读取未知个数的字符串

1)cin

cin读取字符串时,遇到leading whitespace(eg spaces,newlines,tabs)就会完成一次读取。

string word;while(cin>>word)       cout<<word<<endl;

2)getlin()

当我们想整行读取时,可以使用getline,当遇到换行时完成一次读取。

string line;while(getline(cin,line))     cout<<line<<endl;

string操作

1)enpty和size

empty()返回true,字符串是否为空

size()返回字符串个数,注意它的类型时一个unsigned类型,string::size_type因此,在比较时,要注意unsigned类型不要和负值比较。

auto len = line.size();//len has type string::size_type


2)字符串比较

==,当两个字符串有相同的字符内容时,返回真。

>,< 有三种情况

string str = "Hello";string phrase = "Hello World";string slang = "Hiya";

str<phrase ,  slang > phrase>str (i>e)


3)字符串相加

string s1 = "hello,", s2 = "world\n"string s3 = s1 +s2;//s3 is hello,world\nstring s4 = s1 + ",";//okstring s5 = "hello" + ",";//error: no string operandstring s6 = s1 + "," + "world";//okstring s7 = "hello" + "," + s2;//error can't add string literals

4)字符串访问

遍历每一个字符

for(auto c:str)    cout << c << endl;
for(auto &c : s)     c = toupper(c);


随机访问字符串

for(decltype(s.size())) index = 0;index != s.size() && !isspace(s[index]);++index)    s[index] = toupper(s[index]);

const string hexdigits = "0123456789ABCDEF"string result;string::size_type n;while (cin >> n)    if(n < hexdigits.size())           result += hexdigits[n];cout << result << endl;


cctype Functions

需要引入cctype库。

isalnum(c)

isalpha(c)

iscntrl(c)

isdigit(c)

islower(c)

isgraph(c)

isprint(c)

ispunct(c)

isspace(c)

isupper(c)

isxdigit(c)

tolower(c)

toupper(c)


0 0
原创粉丝点击