在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
函數以實現其他功能。