Tunko Development Diary

std::string 문자열의 마지막 문자 가져오기 본문

Development/C++, C++11

std::string 문자열의 마지막 문자 가져오기

Tunko 2017. 10. 11. 18:50
std::string text = "abcdefg";
text = text.substr(text .length() - 1, text.length());

 

반응형
Comments