C++ ---string类(三)

一、string operations

1、c_str

这个是c++标准库中std::string类的c_str()成员函数,是c++中c风格字符串与c++string对象互转的核心接口。核心作用是:把c++的std::string对象转化为c语言兼容的以空字符\0结尾的字符数组,用来兼容c风格的字符串操作,比如c标准库的strlen,strcmp,或者需要const char* 参数的c语言函数。

(1)兼容c语言函数

cpp 复制代码
//1、兼容c语言函数
std::string s = "hello";
size_t len = strlen(s.c_str());
std::cout << len << std::endl;
	

(2)与c风格字符串互转

cpp 复制代码
	const char* c_str = "world";
	std::string s(c_str);


	//string 转c风格字符串
	const char* c = s.c_str();
	
	cout << c << endl;

2、data

3、get _allocator

这个函数的作用是返回当前std::string对象关联的分配器对象的拷贝

4、find

cpp 复制代码
string findsuffix(const string& filename)
{
	size_t i = filename.find('.');
	if (i != string::npos)
	{
		return filename.substr(i);
	}
	else
	{
		return "";
	}
}
void test9()
{
	string filename1("test.cpp");
	string filename2("test.c");
	string filename3("test");
	cout << findsuffix(filename1) << endl;
	cout << findsuffix(filename2) << endl;
	cout << findsuffix(filename3) << endl;
}

5、substr

substr(起始下标,截取长度)

6、rfind

从字符串末尾往前找,返回最后一次出现的位置

cpp 复制代码
void test11()
{

	 
		string s = "hello world hello c++";

		// 找最后一个 "hello"
		size_t pos = s.rfind("hello");

		if (pos != string::npos) {
			cout << "位置:" << pos << endl;
		}
		else {
			cout << "没找到" << endl;
		}

		
	
}

7、getline

cin >> 会自动跳过空格、换行等空白符,遇到空白就停止读取;

getline 会完整读取包括空格在内的所有字符,直到遇到分隔符(默认换行),适合读取整行输入。

相关推荐
cookies_s_s38 分钟前
C++ 字符串动态创建对象 -- 工厂模式、自动注册、模板递归动态调用
服务器·开发语言·c++
王老师青少年编程1 小时前
2026年6月GESP真题及题解(C++七级):消消乐
数据结构·c++·算法·真题·gesp·2026年6月
海清河晏1111 小时前
数据结构 | 二叉搜索树
数据结构·c++·visual studio
盐焗鹌鹑蛋2 小时前
【C++】继承
开发语言·c++
栈溢出了2 小时前
Java Lambda 表达式笔记
java·开发语言·intellij-idea
会周易的程序员2 小时前
使用 pybind11 封装 C++ 日志库 microLog 为 Python 模块
java·c++·python·物联网·架构·日志·aiot
WZF-Sang2 小时前
网络基础——2
服务器·网络·c++·学习·网络编程·php
zhixingheyi_tian2 小时前
一份GC日志的解读
java·开发语言
czhaii2 小时前
串口1中断收发-C语言-MODBUS协议
c语言·开发语言
apihz3 小时前
随机驾考题目(C 照科一 / 科四 2000+ 题)免费API调用教程
android·java·c语言·开发语言·网络协议·tcp/ip