1、判断string中是否包含某个字符串
int r = name.find("要找的字符串");
if (r != -1)
{
//包含;
}
2、字符串是否为空
name.isEmpty();
3、截取到字符串中最后一个特定字符的字符串
char sep = '/';//这是特定字符
size_t i = sourcePath.find_last_of(sep);
if (i != std::string::npos)
{
std::string newPath = sourcePath.substr(0, i);//字符串截取
}
4、字符串拼接
std::string newPath= newPath.append("\" + sFilePath);
5、从字符串的某个位置开始向后删除指定个数的字符
//从2的位置开始向后删除3个字符并自动将剩余的结构赋值给了sFilePath
sFilePath.deleteChars(2, 3);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)