在C++中,std::stringstream
是一个非常有用的类,它允许你将字符串视为流对象进行操作
- 包含必要的头文件:
#include#include #include
- 创建一个自定义函数,该函数接受一个字符串参数,并返回一个处理过的字符串。例如,我们可以创建一个将字符串中的所有字母转换为大写的函数:
std::string toUpperCase(const std::string& input) {
std::string result = input;
for (char& c : result) {
c = toupper(c);
}
return result;
}
- 使用
std::stringstream
将输入字符串传递给自定义函数,然后从该函数获取处理过的字符串:
int main() { std::string input = "Hello, World!"; std::stringstream ss; ss<< input; std::string processedInput = toUpperCase(ss.str()); std::cout << "Original string: "<< input<< std::endl; std::cout << "Processed string: "<< processedInput<< std::endl; return 0; }
这个示例展示了如何使用 std::stringstream
将字符串传递给自定义函数,并从该函数获取处理过的字符串。你可以根据需要修改 toUpperCase
函数以实现其他功能。