C++中的string类⽤法简介
本⽂主要介绍C++中的string类的常见⽤法。
1. 概述
string是C++标准库的⼀个重要的部分,主要⽤于字符串处理。可以使⽤输⼊输出流⽅式直接进⾏string操作,也可以通过⽂件等⼿段进⾏string操作。同时,C++的算法库对string类也有着很好的⽀持,并且string类还和c语⾔的字符串之间有着良好的接⼝。
2. 常见⽤法
2.1 string转换为char*
⽅法⼀:使⽤ c_str() ⽅法,代码(stringsimple.cpp)如下:
#include <string>
#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
string strOutput = "Hello World";
cout << "[cout] strOutput is: " << strOutput << endl;
// string 转换为 char*
const char* pszOutput = strOutput.c_str();
printf("[printf] strOutput is: %s\n", pszOutput);
return 0;
}
编译并执⾏上述代码,结果如下:
上述代码执⾏结果说明:
cout 可直接输出 string 类的对象的内容;
使⽤ c_str() ⽅法转换 string 类型到 char* 类型时,需要为char*添加 const 关键字;
printf() 函数不能直接打印 string 类的对象的内容,可以通过将 string 转换为 char* 类型,再使⽤ printf() 函数打印。
2.1.1 data()⽅法与c_str()⽅法
data()⽅法与c_str()⽅法相似,都返回 const char* 类型。两者区别和联系如下:
在C++98版本中,c_str()返回 const char* 类型,返回的字符串会以空字符(null character)结尾;
在C++98版本中,data()返回 const char* 类型,返回的字符串不以空字符(null character)结尾;
在C++11版本中,c_str()与data()⽤法相同(Both string::data and string::c_str are synonyms and return the same value.)2.2 计算string长度、string字符串⽐较
⽰例代码如下:
#define HELLOSTR "Hello World"
using namespace std;
int main()
{
string strOutput = "Hello World";
int nLen = strOutput.length();
cout << "the length of strOutput is: " << nLen << endl;
if (0 == strOutputpare(HELLOSTR))
{
cout << "strOutput equal with macro HELLOSTR" << endl;
}
return 0;
}
编译并执⾏上述代码,结果如下:
[root@node1 /opt/liitdar/mydemos/simples]# ./stringsimple2
the length of strOutput is: 11
strOutput equal with macro HELLOSTR
[root@node1 /opt/liitdar/mydemos/simples]#
上述代码执⾏结果说明:
string类型可直接使⽤ length() ⽅法计算字符串长度,该⽅法计算结果为字符串的实际长度,如本例中"Hello World"字符串的长度为11;
string类型可使⽤ compare(const string& str) ⽅法进⾏字符串⽐较。
2.3 string对象判空
可使⽤ empty() ⽅法对string类型的对象进⾏判空,如下:
if (pty())
{
cout << "str2 is empty." << endl;
}
2.4 char*、char[]转换为string
将 char*、char[] 转换为 string 类型时,直接进⾏赋值操作,将 char*、char[] 的变量赋值给 string 对象即可。
说明:这⾥所说的“赋值”操作,实际上是将 char*、char[] 定义的字符串的⾸地址赋值给 string 对象了。
⽰例代码(stringtochar.cpp)如下:
int main()
{
const char* pszName = "liitdar";
char pszCamp[] = "alliance";
string strName;
string strCamp;
strName = pszName;
c++中string的用法strCamp = pszCamp;
cout << "strName is: " << strName << endl;
cout << "strCamp is: " << strCamp << endl;
return 0;
}
编译并执⾏上述代码,结果如下:
2.5 string类的find⽅法
使⽤string类的find⽅法,在字符串中检索⾃字符串是否存在。
2.5.1 ⽤法
⽤法如下:
size_t find (const string& str, size_t pos = 0) const;
size_t find (const char* s, size_t pos = 0) const;
size_t find (const char* s, size_t pos, size_t n) const;
size_t find (char c, size_t pos = 0) const;
2.5.2 返回值
find函数返回值:
The position of the first character of the first match. If no matches were found, the function returns string::npos. size_t is an unsigned integral type (the same as member type string::size_type).
2.5.3 ⽰例代码
find⽅法的⽰例代码(string_find_test1.cpp)如下:
int main()
{
// 待检索的字符串
string strOutput = "|0|1|2|";
// 需要检索的⼦串
string strObj = "|1|";
// ⼦串位于字符串中的位置
size_t nLoc = strOutput.find(strObj);
// 如果检索到⼦串在字符串中,则打印⼦串的位置
if (nLoc != string::npos)
{
cout << "nLoc is: " << nLoc << endl;
}
return 0;
}
编译并执⾏上述代码,结果如下:
2.6 string类的insert⽅法
使⽤string类的insert⽅法,向字符串中插⼊字符(串)。官⽅的定义如下:
Inserts additional characters into the string right before the character indicated by pos (or p).
2.6.1 ⽤法
string (1)string& insert (size_t pos, const string& str);
substring (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);
single character (6)iterator insert (iterator p, char c);
range (7)template <class InputIterator>
void insert (iterator p, InputIterator first, InputIterator last);
2.6.2 ⽰例代码
insert⽅法的⽰例代码(string_insert_test1.cpp)如下:
int main()
{
string strDemo = "I am";
strDemo.insert(4, " good.");
cout << "strDemo is: " << strDemo << endl;
return 0;
}
编译并执⾏上述代码,结果如下:
2.7 int类型转为string类的⽅法
这⾥介绍两种常见的 int 类型转换为 string 类的⽅法,⽰例代码如下:
#include <string>
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
// ⽅法1
int nNum1 = 123;
stringstream ss;
ss << nNum1;
string strTest1 = ss.str();
cout << "strTest1 is: " << strTest1 << endl;
/*
string strTest2;
strTest2 << ss;    // stringstream 未定义 << 操作符,故此句报错
cout << "strTest2 is: " << strTest2 << endl;
*/
string strTest3;
ss >> strTest3;
cout << "strTest3 is: " << strTest3 << endl;
/
/ ⽅法2
int nNum2 = 456;
string strTest4;
strTest4 = to_string(nNum2);    // C++11 标准
cout << "strTest4 is: " << strTest4 << endl;
return 0;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。