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

初始化:

string s1
string s2(s1)
string s2 = s1
string 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\n
string s4 = s1 + ",";//ok
string s5 = "hello" + ",";//error: no string operand
string s6 = s1 + "," + "world";//ok
string 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
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值