在C++中,std::stringstream
是一个非常有用的类,它允许你将字符串视为流对象进行操作
#include<iostream>
#include <sstream>
#include<string>
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
函数以实现其他功能。