C++——解锁string常用接口

目录

string::npos;

1.测试string容量相关的接口:

1.1 string::size()

1.2 string::clear()

1.3 string::resize()

 1.4 string::erase()

1.5 string::reserve() 保留

1.6 std::string::shrink_to_fit

2.string数据插入删除相关的接口

2.1 std::string::push_back 尾插

2.2 std::string::pop_back 尾删

2.3 std::string::insert 插入

3.string查找相关的接口

3.1 std::string::find

3.2 std::string::rfind

3.3string::find_first_of

参数

返回值

3.4 string::find_first_not_of

3.5 string::find_last_of

3.6 string::find_last_not_of

4.string的遍历(含迭代器接口)

4.1 std::string::begin

4.2 std::string::end

4.3 std::string::rbegin

4.4 std::string::rend

5. string 子字符串

5.1 std::string::substr

pos

lens

返回值

6.交换和替换string接口

6.1 std::string::replace

参数

6.2 std::string::swap

参数

7.比较赋值string接口

8.获取等效的 C 字符串

8.1 std::string::c_str

9.数字与字符串的转换

9.1 数字转字符串

string::to_string

返回值

9.2字符串转数字

std::stoi

参数

std::stol  (std::stoll)

std::stof

std::stod

std::stold

10.算法中的string运用

10.1交换字符串

10.2反转字符串


本篇的内容是记录使用string接口的测试与使用,方便后续使用时查阅使用

首先介绍

string::npos;

size_t(无符号整型)的最大值。NPOS 是一个静态成员常量值,具有 size_t 类型元素的最大可能值。当此值用作字符串成员函数中 len(或 sublen)参数的值时,表示“直到字符串末尾”。作为返回值,它通常用于指示不匹配。此常量使用值 -1 定义,由于 size_t 是无符号整数类型,因此它是此类型的最大可能可表示值。

引用头文件和展开命名空间
 

#include<iostream>
#include<string>
using namespace

1.测试string容量相关的接口:

1.1 string::size()

size_t size() const;
字符串的返回长度

返回字符串的长度(以字节为单位)。

这是符合字符串内容的实际字节数,不包括'\0',不一定等于其存储容量。


请注意,对象在处理字节时不知道最终可能用于对其包含的字符进行编码的编码。因此,返回的值可能与多字节或可变长度字符序列(如 UTF-8)中编码字符的实际数目不对应。string::size 和 string::length 都是同义词,返回相同的值。
string

// string::size
#include <iostream>
#include <string>int main ()
{std::string str ("Test string");std::cout << "The size of str is " << str.size() << " bytes.\n";return 0;
}

输出:

The size of str is 11 bytes

1.2 string::clear()

void clear();
清除字符串

擦除字符串的内容,该字符串将变为空字符串(长度为 0 个字符)。

其实就是将s中的字符串清空,注意清空时只是将size清0,不改变底层空间的大小

1.3 string::resize()

void resize (size_t n);
void resize (size_t n, char c);●  如果 n 小于当前字符串长度,则当前值将缩短为其前 n 个字符,并删除第 n 个字符以外的字符。
●  如果 n 大于当前字符串长度,则通过在末尾插入任意数量的字符来扩展当前内容,以达到 n 的大小。
●  如果指定了 c,则新元素将初始化为 c 的副本,否则,它们是值初始化的字符(null 字符)
void Teststring1()
{// 注意:string类对象支持直接用cin和cout进行输入和输出string s("hello, zjc!!!");cout << s.size() << endl;cout << s.length() << endl;cout << s.capacity() << endl;cout << s << endl;// 将s中的字符串清空,注意清空时只是将size清0,不改变底层空间的大小s.clear();cout << s.size() << endl;cout << s.capacity() << endl;// 将s中有效字符个数增加到10个,多出位置用'a'进行填充// “aaaaaaaaaa”s.resize(10, 'a');cout << s.size() << endl;cout << s.capacity() << endl;//将s中有效字符个数增加到15个,多出位置用缺省值'\0'进行填充//”aaaaaaaaaaa\0\0“//注意此时s中有效个数已经增加到15个s.resize(15);cout << s.size() << endl;cout << s.capacity() << endl;cout << s << endl;//将s中有效数字符缩小到5个s.resize(5);cout << s.size() << endl;cout << s.capacity() <<endl;cout << s << endl;} 

 1.4 string::erase()

erase()函数用于从字符串中删除指定位置或指定范围的字符。它可以接受一个参数或两个参数。
1.当传递一个参数时,表示从指定位置开始删除到字符串的末尾的所有字符。
2.当传递两个参数时,表示从指定位置开始删除指定数量的字符。
3.l调用erase()后,字符串的长度会相应地减少,并且内存空间也可能会被重新分配以适应新的长度。
 

void Teststring2() 
{//clear()函数用于清空字符串的内容,将字符串变为空字符串,即不包含任何字符。//调用clear()后,字符串的长度将变为0,但内存空间不会被释放,仍然保留着。string s1("hello wolrd"); s1.clear();cout << "s1: " << s1 <<endl;cout << s1.size()<<endl<< s1.capacity()<<endl;//erase()函数用于从字符串中删除指定位置或指定范围的字符。它可以接受一个参数或两个参数。//当传递一个参数时,表示从指定位置开始删除到字符串的末尾的所有字符。string s2("hello wolrd");s2.erase(4);cout << "s2: " << s2 <<endl;cout << s2.size()<<endl<< s2.capacity()<<endl; //当传递两个参数时,表示从指定位置开始删除指定数量的字符。//调用erase()后,字符串的长度会相应地减少,并且内存空间也可能会被重新分配以适应新的长度。string s3("hello wolrd");s3.erase(7,3);cout << "s3: " << s3 <<endl;cout << s3.size()<<endl<< s3.capacity();
}

1.5 string::reserve() 保留

void reserve (size_t n = 0);
请求更改容量

请求使字符串容量适应计划的大小更改,长度不超过 n 个字符。

如果 n 大于当前字符串容量,则该函数会导致容器将其容量增加到 n 个字符(或更大(具体看编译器的设定))。

在所有其他情况下,它被视为收缩字符串容量的非绑定请求(在size大于n的情况下,请求缩小容积无效):容器实现可以自由地优化,并使字符串的容量大于 n

此函数对字符串长度没有影响,并且无法更改其内容。

void Teststring3()
{string s;//测试reserve是否改变string中有效元素个数s.reserve(100);cout << s.size()<<endl;cout << s.capacity() <<endl;// 测试reserve参数小于string的底层空间大小,是否会将空间缩小s.reserve(50);cout << s.size()<<endl;cout << s.capacity() <<endl;//可以缩小空间 }

1.6 std::string::shrink_to_fit

void shrink_to_fit();
收缩以适合

请求字符串减小其容量以适合其大小。
可以理解为请求string::size() 缩小后。为了缩小占有空间,使用shrink_to_fit()缩小,

此时string::size()不变。string::capacity可能会缩小有可能不变,如果string::capacity缩小,那么一定大于等于string::size。

例:

// string::shrink_to_fit
#include <iostream>
#include <string>int main ()
{std::string str (100,'x');std::cout << "1. capacity of str: " << str.capacity() << '\n';str.resize(10);std::cout << "2. capacity of str: " << str.capacity() << '\n';str.shrink_to_fit();std::cout << "3. capacity of str: " << str.capacity() << '\n';return 0;
}

可能的输出:

1. capacity of str: 100
2. capacity of str: 100
3. capacity of str: 10

2.string数据插入删除相关的接口

2.1 std::string::push_back 尾插

void push_back (char c);
将字符附加到字符串

将字符 c 追加到字符串的末尾,使其长度增加 1。

// string::push_back
#include <iostream>
#include <fstream>
#include <string>int main ()
{std::string str1("hello world");std::string str2;for(auto e:str1){str2.push_back(e);}std::cout << str2 << '\n';return 0;
}

将字符串str1的字符从前到后尾插到str2中

2.2 std::string::pop_back 尾删

void pop_back();
删除最后一个字符

擦除字符串的最后一个字符,从而有效地将其长度减少 1。

#include <iostream>
#include <string>int main ()
{std::string str1("hello world");std::string str2;for(auto e:str1){str2.push_back(e);}std::cout << str2 << '\n';str2.pop_back();str2.pop_back();std::cout << str2 << '\n';return 0;
}

直接调用两次pop_back函数,删掉尾部两个字符。

2.3 std::string::insert 插入

这里我们

string (1)
 string& insert (size_t pos, const string& str);
substrring (2)
 string& insert (size_t pos, const string& str, size_t subpos, size_t sublen);
C -string (3)
 string& insert (size_t pos, const char* s);
 buffer(4)
 string& insert (size_t pos, const char* s, size_t n);
 fill(5)
 string& insert (size_t pos, size_t n, char c);void insert (iterator p, size_t n, char c);
char (6)
iterator insert (iterator p, char c);
range (7)
template <class InputIterator>void insert (iterator p, InputIterator first, InputIterator last);

这里我们主要用到1235这三个重载函数。

// inserting into a string
#include <iostream>
#include <string>int main ()
{std::string str="to be question";std::string str2="the ";std::string str3="or not to be";std::string::iterator it;// used in the same order as described above:str.insert(6,str2);                 // to be (the )questionstr.insert(6,str3,3,4);             // to be (not )the questionstr.insert(10,"that is cool",8);    // to be not (that is )the questionstr.insert(10,"to be ");            // to be not (to be )that is the questionstr.insert(15,1,':');               // to be not to be(:) that is the questionit = str.insert(str.begin()+5,','); // to be(,) not to be: that is the questionstr.insert (str.end(),3,'.');       // to be, not to be: that is the question(...)str.insert (it+2,str3.begin(),str3.begin()+3); // (or )std::cout << str << '\n';return 0;
}

3.string查找相关的接口

3.1 std::string::find

字符串 (1)	
size_t find (const string& str, size_t pos = 0) const;
C string (2)	
size_t find (const char* s, size_t pos = 0) const;
缓冲器 (3)	
size_t find (const char* s, size_t pos, size_t n) const;
字符 (4)	
size_t find (char c, size_t pos = 0) const;
在字符串中查找内容

在字符串中搜索由其参数指定的序列的第一次匹配项,并返回第一个匹配项所在的第一个字符的位置。
指定 pos 时,搜索仅包括位置 pos 处或位置之后的字符,忽略任何可能出现的在 pos 之前包含字符的情况。
请注意,与成员find_first_of不同,每当搜索多个字符时,仅其中一个字符匹配是不够的,但整个(所搜索)序列必须匹配。

参数

str

另一个包含要搜索的主题的字符串。

POS

要在搜索中考虑的字符串中第一个字符的位置。
如果这大于字符串长度,则函数永远不会找到匹配项。
注意:第一个字符由值 0(不是 1)表示:值 0 表示搜索整个字符串。

s

指向字符数组的指针。
如果指定了参数 n (3),则要匹配的序列是数组中的前 n 个字符。
否则 (2),应为以 null 结尾的序列:要匹配的序列的长度由第一次出现 null 字符确定。

n

要匹配的字符序列的长度。

c

要搜索的单个字符

size_t 是无符号整型(与成员类型相同)。string::size_type

 

返回值

第一个匹配项的第一个字符的位置。
如果未找到匹配项,该函数将返回 string::npos。

void Teststring6()
{	//取出ur1中的域名string ur1("http://www.cplusplus.com/reference/string/string/find/");cout << ur1 << endl;size_t start = 0;size_t finish = ur1.find("://");if(start == string::npos){cout << "invalid ur1" << endl;return;}// string substr (size_t pos = 0, size_t len = npos) const;string address = ur1.substr(start,finish - start);cout << address << ' ';start += address.size()+3;do{finish = ur1.find('/',start); address = ur1.substr(start,finish - start);cout << address << ' '; start += address.size()+1;}while(finish!= (ur1.size()-1));cout << endl;// 删除ur1的协议前缀pos = ur1.find("://");ur1.erase(0, pos + 3);cout << ur1 <<endl; 
}

使用find寻找C++图书馆网站的网址中://和/,来区分协议,域名等的。

string::size_type

3.2 std::string::rfind

std::string::rfind
string (1)
size_t rfind (const string& str, size_t pos = npos) const;
c-string (2)
size_t rfind (const char* s, size_t pos = npos) const;
buffer (3)
size_t rfind (const char* s, size_t pos, size_t n) const;
character (4)
size_t rfind (char c, size_t pos = npos) const;
查找字符串中最后一次出现的内容

在字符串中搜索由其参数指定的序列的最后一次匹配项。

指定 pos 时,搜索仅包括从位置 pos 开始或之前开始的字符序列,忽略在 pos 之后开始的任何可能的匹配。

这个与string::find类似,不过最大的区别是一个从前往后搜索,另一个从后往前搜索。

// string::rfind
#include <iostream>
#include <string>
#include <cstddef>int main ()
{std::string str ("The sixth sick sheik's sixth sheep's sick.");std::string key ("sixth");std::size_t found = str.rfind(key);if (found!=std::string::npos)str.replace (found,key.length(),"seventh");std::cout << str << '\n';return 0;
}

这代码搜索sixth,并且替换成seventh,可以看到它是替换掉后面sixth而不是前面的sixth,可以证明该函数是从前后往前搜索的。

输出

The sixth sick sheik's seventh sheep's sick

string::find_first_of

string::find_first_not_of

string::find_last_of

string::find_list_not_of

这四个接口十分类似,这里不一一列举,主要讲解string::find_first_of,其他简单介绍。

3.3string::find_first_of

字符串 (1)
size_t find_first_of (const string& str, size_t pos = 0) const;
C 弦 (2)
size_t find_first_of (const char* s, size_t pos = 0) const;
缓冲器 (3)
size_t find_first_of (const char* s, size_t pos, size_t n) const;
字符 (4)
size_t find_first_of (char c, size_t pos = 0) const;
在字符串中查找字符

在字符串中搜索与其参数中指定的任何字符匹配的第一个字符。
指定 pos 时,搜索仅包括位置 pos 处或位置之后的字符,忽略 pos 之前可能出现的任何字符。

参数

str

另一个包含要搜索的字符的字符串。

POS

要在搜索中考虑的字符串中第一个字符的位置。
如果这大于字符串长度,则函数永远不会找到匹配项。
注意:第一个字符由值 0(不是 1)表示:值 0 表示搜索整个字符串。

s

指向字符数组的指针。
如果指定了参数 n (3),则搜索数组中的前 n 个字符。
否则 (2),应为以 null 结尾的序列:包含要匹配的字符的序列的长度由第一次出现 null 字符确定。

n

要搜索的字符值数。

c

要搜索的单个字符。


size_t是无符号整型(与成员类型相同)。string::size_type

string::size_type

返回值

匹配的第一个字符的位置。
如果未找到匹配项,该函数将返回 string::npos。

代码演示

// string::find_first_of
#include <iostream>       // std::cout
#include <string>         // std::string
#include <cstddef>        // std::size_tint main ()
{std::string str ("Please, replace the vowels in this sentence by asterisks.");std::size_t found = str.find_first_of("aeiou");while (found!=std::string::npos){str[found]='*';found=str.find_first_of("aeiou",found+1);}std::cout << str << '\n';return 0;
}

找到任何字符匹配的第一个字符,即是字符串中“aeiou”的任意一个字符匹配,就把它替换成

‘*’。

输出

Pl**s*, r*pl*c* th* v*w*ls *n th*s s*nt*nc* by *st*r*sks.

3.4 string::find_first_not_of

接口参数和string::find_first_of一样,但是查找的是字符串中缺少字符(没有出现的字符),返回它的位置。

3.5 string::find_last_of

接口参数和string::find_first_of一样,查找的是字符串中字符,返回它的位置,与string::find_first_of不同的是从后往前寻找。

3.6 string::find_last_not_of

接口参数和string::find_first_of一样,与  string::find_last_of类似但是查找的是字符串中缺少字符(没有出现的字符)。

4.string的遍历(含迭代器接口)

    3种遍历方式:
    需要注意的以下三种方式除了遍历string对象,还可以遍历修改string中的字符,
    另外以下三种方式对于string而言,第一种使用最多

void Teststring5()
{string s("hello world");//1.for + operator[]for(size_t i = 0; i< s.size();++i)cout << s[i] <<" ";cout << endl;//2.迭代器string::iterator it = s.begin();while(it != s.end()){cout << *it << " ";++it; }cout << endl; // string::reverse_iterator = s.rbegin();//C++11之后。直接使用auto定义迭代器,让编译器推导迭代器的类型auto rit = s.rbegin();    while(rit != s.rend()){cout << *rit << endl;rit++;}    //3.范围for(底层也是运用迭代器)for(auto ch : s) //如果要修改的话,使用引用 cout << ch << " ";cout << endl; 
} 

4.1 std::string::begin

      iterator end();
const_iterator end() const;
将迭代器返回到开头

返回指向字符串的第一个字符的迭代器。(运用如上代码所示)

4.2 std::string::end

     iterator end();
const_iterator end() const;
将迭代器返回到 end

返回一个迭代器,该迭代器指向字符串的末尾字符。(运用如上代码所示)
过去结束字符是理论上的字符,它将跟随字符串中的最后一个字符。不得取消引用。
由于标准库的函数使用的范围不包括其关闭迭代器所指向的元素,因此此函数通常与 string::begin 结合使用,以指定包含字符串中所有字符的范围。
如果对象是空字符串,则此函数返回与 string::begin 相同的结果。

4.3 std::string::rbegin

      reverse_iterator rbegin();
const_reverse_iterator rbegin() const;
返回反向迭代器以反向开始

返回指向字符串最后一个字符(即其反向开头)的反向迭代器
反向迭代器向后迭代:增加它们会使它们向字符串的开头移动。
rbegin 指向 member end 将指向的字符之前的字符。(运用如上代码所示)


4.4 std::string::rend

      reverse_iterator rend();
const_reverse_iterator rend() const;
将反向迭代器返回到反向端

返回一个反向迭代器,该迭代器指向字符串第一个字符(被视为其反向末尾)之前的理论元素。
string::rbegin 和 string::rend 之间的范围包含字符串的所有字符(顺序相反)。

(运用如上代码所示)

5. string 子字符串

5.1 std::string::substr

string substr (size_t pos = 0, size_t len = npos) const;

生成子字符串
返回一个新构造的对象,其值初始化为此对象的子字符串的副本。子字符串是对象的一部分,它从字符位置开始并跨越字符(或直到字符串的末尾,以先到者为准)。

pos

要作为子字符串复制的第一个字符的位置。
如果这等于字符串长度,则该函数返回一个空字符串
如果这大于字符串长度,则会抛出out_of_range。
注意:第一个字符由值 0(而不是 1)表示。

lens

要包含在子字符串中的字符数(如果字符串较短,则使用尽可能多的字符)。
值 string::npos 表示字符串末尾之前的所有字符。

返回值

一个字符串对象,具有此对象的子字符串。

// string::substr
#include <iostream>
#include <string>int main ()
{std::string str="We think in generalities, but we live in details.";// (quoting Alfred N. Whitehead)std::string str2 = str.substr (3,5);     // "think"std::size_t pos = str.find("live");      // position of "live" in strstd::string str3 = str.substr (pos);     // get from "live" to the endstd::cout << str2 << ' ' << str3 << '\n';return 0;
}

输出

think live in details.

演示了加lens和不加lens的情况

6.交换和替换string接口

6.1 std::string::replace

string (1)	
string& replace (size_t pos,  size_t len,  const string& str);
string& replace (iterator i1, iterator i2, const string& str);
substring (2)	
string& replace (size_t pos,  size_t len,  const string& str,size_t subpos, size_t sublen);
C string (3)	
string& replace (size_t pos,  size_t len,  const char* s);
string& replace (iterator i1, iterator i2, const char* s);
缓冲器 (4)	
string& replace (size_t pos,  size_t len,  const char* s, size_t n);
string& replace (iterator i1, iterator i2, const char* s, size_t n);
full (5)	
string& replace (size_t pos,  size_t len,  size_t n, char c);
string& replace (iterator i1, iterator i2, size_t n, char c);
range (6)	
template <class InputIterator>string& replace (iterator i1, iterator i2,InputIterator first, InputIterator last);

主要用到前四个接口。

很简单的概括就是前面规划出要被替换的字符串和后面规划出要替换的字符串。

参数

pos

原来字符串位置

len

要替换的长度

例子 

#include <iostream>
#include <string>int main ()
{std::string base="this is a test string.";std::string str2="n example";std::string str3="sample phrase";std::string str4="useful.";// replace signatures used in the same order as described above:// Using positions:                 0123456789*123456789*12345std::string str=base;           // "this is a test string."str.replace(9,5,str2);          // "this is an example string." (1)str.replace(19,6,str3,7,6);     // "this is an example phrase." (2)str.replace(8,10,"just a");     // "this is just a phrase."     (3)str.replace(8,6,"a shorty",7);  // "this is a short phrase."    (4)str.replace(22,1,3,'!');        // "this is a short phrase!!!"  (5)// Using iterators:                                               0123456789*123456789*str.replace(str.begin(),str.end()-3,str3);                    // "sample phrase!!!"      (1)str.replace(str.begin(),str.begin()+6,"replace");             // "replace phrase!!!"     (3)str.replace(str.begin()+8,str.begin()+14,"is coolness",7);    // "replace is cool!!!"    (4)str.replace(str.begin()+12,str.end()-4,4,'o');                // "replace is cooool!!!"  (5)str.replace(str.begin()+11,str.end(),str4.begin(),str4.end());// "replace is useful."    (6)std::cout << str << '\n';return 0;
}

6.2 std::string::swap

void swap (string& str);
交换字符串值

通过 str 的内容交换容器的内容,str 是另一个字符串对象。长度可能不同。
调用此成员函数后,此对象的值是 str 在调用之前的值,str 的值是此对象在调用之前的值。
请注意,存在一个具有相同名称的非成员函数 swap,该算法使用行为类似于此成员函数的优化重载该算法。

参数

str

另一个字符串对象,其值与此字符串的值交换。

// swap strings
#include <iostream>
#include <string>main ()
{std::string buyer ("money");std::string seller ("goods");std::cout << "Before the swap, buyer has " << buyer;std::cout << " and seller has " << seller << '\n';seller.swap (buyer);std::cout << " After the swap, buyer has " << buyer;std::cout << " and seller has " << seller << '\n';return 0;
}

输出:

Before the swap, buyer has money and seller has goodsAfter the swap, buyer has goods and seller has mone

7.比较赋值string接口

直接运用>、<、<=、>=、!=、==、运算比较即可

库函数已经进行运算符重载就不需要用类似string::compare()的接口增加记忆成本

#include <iostream>
#include <string>
using namespace std; 
int main ()
{string str1("string");string str2("string1");string str3("string1");cout << (str1 < str2) <<endl;cout << (str1 == str2) <<endl;cout << (str1 > str2) <<endl;cout << (str3 < str2) <<endl;cout << (str3 == str2) <<endl;cout << (str3 > str2) <<endl;}

输出:

8.获取等效的 C 字符串

8.1 std::string::c_str

const char* c_str() const;

用于C和C++是兼容的,在有时候常常会用到C接口,要使用到C字符串。

std::string::c_str()就是因此而诞生的。

获取等效的 C 字符串

返回指向数组的指针,该数组包含以 null 结尾的字符序列(即 C 字符串),该字符表示字符串对象的当前值。
此数组包含构成字符串对象值的相同字符序列,以及末尾的附加终止 null 字符 ('\0')。

// strings and c-strings
#include <iostream>
#include <cstring>
#include <string>int main ()
{std::string str ("Please split this sentence into tokens");char * cstr = new char [str.length()+1];std::strcpy (cstr, str.c_str());// cstr now contains a c-string copy of strchar * p = std::strtok (cstr," ");while (p!=0){std::cout << p << '\n';p = std::strtok(NULL," ");}delete[] cstr;return 0;
}

输出:

Please
split
this
sentence
into
tokens

9.数字与字符串的转换

9.1 数字转字符串

string::to_string

string to_string (int val);
string to_string (long val);
string to_string (long long val);
string to_string (unsigned val);
string to_string (unsigned long val);
string to_string (unsigned long long val);
string to_string (float val);
string to_string (double val);
string to_string (long double val);
将数值转换为字符串

返回表示为 val 的字符串。
使用的格式与 printf 为相应类型打印的格式相同:

The format used is the same that printf would print for the corresponding type:

type of valprintf equivalentdescription
int"%d"Decimal-base representation of val.
The representations of negative values are preceded with a minus sign (-).
long"%ld
long long"%lld
unsigned"%u"Decimal-base representation of val.
unsigned long"%lu
unsigned long long"%llu
float"%f"As many digits are written as needed to represent the integral part, followed by the decimal-point character and six decimal digits.
inf (or infinity) is used to represent infinity.
nan (followed by an optional sequence of characters) to represent NaNs (Not-a-Number).
The representations of negative values are preceded with a minus sign (-).
double"%f
long double"%Lf

返回值

一个 字符串对象,将  val 表示为字符序列

// to_string example
#include <iostream>   // std::cout
#include <string>     // std::string, std::to_stringint main ()
{std::string pi = "pi is " + std::to_string(3.1415926);std::string perfect = std::to_string(1+2+4+7+14) + " is a perfect number";std::cout << pi << '\n';std::cout << perfect << '\n';return 0;
}
可能的输出:
pi is 3.141593
28 is a perfect numbe

9.2字符串转数字

std::stoi

int stoi (const string&  str, size_t* idx = 0, int base = 10);
int stoi (const wstring& str, size_t* idx = 0, int base = 10);
将字符串转换为整数

解析 str 并将其内容解释为指定基数的整数,该整数作为 int 值返回。
如果 idx 不是空指针,则该函数还会将 idx 的值设置为 str 中第一个字符在数字之后的位置。

参数

str

表示整数的 String 对象。

IDX的

指向 size_t 类型的对象的指针,该对象的值由函数设置为 str 中下一个字符在数值之后的位置。
此参数也可以是 null 指针,在这种情况下,不使用它。

基础

确定有效字符及其解释的数字基数(基数)。
如果此值为 0,则使用的基数由序列中的格式决定(有关详细信息,请参见 strtol)。请注意,默认情况下,此参数为 10,而不是 0。

// stoi example
#include <iostream>   // std::cout
#include <string>     // std::string, std::stoiint main ()
{std::string str_dec = "2001, A Space Odyssey";std::string str_hex = "40c3";std::string str_bin = "-10010110001";std::string str_auto = "0x7f";std::string::size_type sz;   // alias of size_tint i_dec = std::stoi (str_dec,&sz); //sz是为了得到2001的下一个字符的位置,默认10进制字符串转换成十进制整数int i_hex = std::stoi (str_hex,nullptr,16);//16进制字符串转换成十进制整数int i_bin = std::stoi (str_bin,nullptr,2);//2进制字符串转换成十进制整数int i_auto = std::stoi (str_auto,nullptr,0);//如果此值为 0,则使用的基数由序列中的格式决定std::cout << str_dec << ": " << i_dec << " and [" << str_dec.substr(sz) << "]\n";std::cout << str_hex << ": " << i_hex << '\n';std::cout << str_bin << ": " << i_bin << '\n';std::cout << str_auto << ": " << i_auto << '\n';return 0;
}

输出:


2001, A Space Odyssey: 2001 and [, A Space Odyssey]
40c3:  16579
-10010110001: -1201
0x7f: 127

下面接口跟std::stoi相似,这里简单介绍一下

std::stol  (std::stoll)

long stol (const string&  str, size_t* idx = 0, int base = 10);
long stol (const wstring& str, size_t* idx = 0, int base = 10);

std::stof

float stof (const string&  str, size_t* idx = 0);
float stof (const wstring& str, size_t* idx = 0);

std::stod

std::stold

10.算法中的string运用

10.1反转字符串

#include <algorithm>
#include <iostream>
#include <string>
using namespace std; 
int main ()
{string str1("hello world");reverse(str1.begin(),str1.end());cout << str1 <<endl;
}
输出:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/234974.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数据结构学习笔记(王道)

数据结构学习笔记&#xff08;王道&#xff09; PS&#xff1a;本文章部分内容参考自王道考研数据结构笔记 文章目录 数据结构学习笔记&#xff08;王道&#xff09;一、绪论1.1. 数据结构1.2. 算法1.2.1. 算法的基本概念1.2.2. 算法的时间复杂度1.2.3. 算法的空间复杂度 二、…

Java封装讯飞星火大模型历险记

问题描述与分析 现状描述与目标 在使用讯飞星火大模型API的过程中&#xff0c;API的返回结果在可以在其他线程中进行分次打印&#xff0c;但是在main方法中直接打印返回结果&#xff0c;显示为空。这种情况下不利于二次封装&#xff0c;希望在main方法中获取完整的API返回结果…

Java中的synchronized关键字

目录 1、synchronized是什么 2、synchronized的用法 synchronized可以用在方法或者代码块上&#xff0c;分别称为同步方法和同步代码块。 用法理解 3、synchronized的实现原理 ⭐synchronized锁的对比 4、synchronized的优缺点 ⭐扩展&#xff1a;synchronized 和 vola…

NSSCTF第14页(2)

[UUCTF 2022 新生赛]ezpop 提示说看看反序列化字符串逃逸 PHP反序列化字符串逃逸_php反序列化逃逸-CSDN博客 php反序列化字符逃逸_php反序列化逃逸_Leekos的博客-CSDN博客 buuctf刷题9 (反序列化逃逸&shtml-SSI远程命令执行&idna与utf-8编码漏洞)_extract($_post);…

JeecgBoot低代码开发—Vue3版前端入门教程

JeecgBoot低代码开发—Vue3版前端入门教程 后端接口配置VUE3 必备知识1.vue3新特性a. https://v3.cn.vuejs.org/b.setup的用法c.ref 和 reactive 的用法d.新版 v-model 的用法e.script setup的用法 2.TypeScript基础 后端接口配置 如何修改后台项目路径 http://127.168.3.52:8…

MySQL处理并发访问和高负载的关键技术和策略

我深知在数据库管理中处理并发访问和高负载的重要性。在这篇文章中&#xff0c;我将探讨MySQL处理并发访问和高负载的关键技术和策略&#xff0c;以帮助读者更好地优化数据库性能。 图片来源&#xff1a;MySQL处理并发访问和高负载的关键技术和策略 MySQL数据库在处理并发访问…

【合集】MQ消息队列——Message Queue消息队列的合集文章 RabbitMQ入门到使用

前言 RabbitMQ作为一款常用的消息中间件&#xff0c;在微服务项目中得到大量应用&#xff0c;其本身是微服务中的重点和难点。本篇博客是Message Queue相关的学习博客文章的合集篇&#xff0c;目前主要是RabbitMQ入门到使用文章&#xff0c;后续会扩展其他MQ。 目录 前言一、R…

ssm+vue的公司安全生产考试系统(有报告)。Javaee项目,ssm vue前后端分离项目。

演示视频&#xff1a; ssmvue的公司安全生产考试系统&#xff08;有报告&#xff09;。Javaee项目&#xff0c;ssm vue前后端分离项目。 项目介绍&#xff1a; 采用M&#xff08;model&#xff09;V&#xff08;view&#xff09;C&#xff08;controller&#xff09;三层体系结…

【OJ比赛日历】快周末了,不来一场比赛吗? #12.02-12.08 #15场

CompHub[1] 实时聚合多平台的数据类(Kaggle、天池…)和OJ类(Leetcode、牛客…&#xff09;比赛。本账号会推送最新的比赛消息&#xff0c;欢迎关注&#xff01; 以下信息仅供参考&#xff0c;以比赛官网为准 目录 2023-12-02&#xff08;周六&#xff09; #4场比赛2023-12-03…

.NET开源的处理分布式事务的解决方案

前言 在分布式系统中&#xff0c;由于各个系统服务之间的独立性和网络通信的不确定性&#xff0c;要确保跨系统的事务操作的最终一致性是一项重大的挑战。今天给大家推荐一个.NET开源的处理分布式事务的解决方案基于 .NET Standard 的 C# 库&#xff1a;CAP。 CAP项目介绍 CA…

11.30 C++类特殊成员函数

#include <iostream>using namespace std; class Per { private:string name;int age;double *high;double weight; public://构造函数Per(string name,int age,double high,double weight):name(name),age(age),high(new double(high)),weight(weight){cout << &q…

信贷专员简历模板

这份简历内容&#xff0c;以信贷专员招聘需求为背景&#xff0c;我们制作了1份全面、专业且具有参考价值的简历案例&#xff0c;大家可以灵活借鉴。 信贷专员简历在线编辑下载&#xff1a;百度幻主简历 求职意向 求职类型&#xff1a;全职 意向岗位&#xff1a;信贷专员 …