관리 메뉴

기억을 위한 기록들

[CPP] std::stringstream에 관하여 본문

C & CPP

[CPP] std::stringstream에 관하여

에드윈H 2022. 6. 6. 15:21

https://www.cplusplus.com/reference/sstream/stringstream/stringstream/

 

stringstream::stringstream - C++ Reference

initialization (2)explicit stringstream (const string& str, ios_base::openmode which = ios_base::in | ios_base::out);

www.cplusplus.com

 

 

#include <iostream>
#include <sstream>
using namespace std;

int main()
{

	string str = "Hello World";
	stringstream strStream(str);
	string to, From;
	strStream >> to >> From;

	cout << From << " " << to << endl;
	return 0;
}

결과