겨울팥죽 여름빙수
Published 2015. 1. 9. 22:08
c++ string tokenizer 게임을 만들자/C++

1. Implement

This code use string class instead of strtok included in <string.h>.

void StringTokenize(const string& str, vector<string>& tokens, const string& delimiters)
{
    // Skip delimiters at beginning.
    string::size_type lastPos = str.find_first_not_of(delimiters, 0);
    // Find first "non-delimiter".
    string::size_type pos     = str.find_first_of(delimiters, lastPos);

    while (string::npos != pos || string::npos != lastPos)
    {
        // Found a token, add it to the vector.
        tokens.push_back(str.substr(lastPos, pos - lastPos));
        // Skip delimiters.  Note the "not_of"
        lastPos = str.find_first_not_of(delimiters, pos);
        // Find next "non-delimiter"
        pos = str.find_first_of(delimiters, lastPos);
    }
}

const string& str : target string to be split by delimiters

vector<string>& tokens : split sub strings will be pushed. This parameter is reference type, so It have to be not null.


2. Using Example

void main()
{
	vector<string> quiz_str_list;
	string quiz_str = "abc:def:ghi"        
	StringTokenize(quiz_str, quiz_str_list, ":");

	for(auto token : quiz_str_list)
		printf("%s\n", token.c_str());
}

Token size is 3. Result is

"abc"

"def"

"ghi"



'게임을 만들자 > C++' 카테고리의 다른 글

[알고리즘] 이진트리 만들기  (1) 2021.05.22
c++11 min, max 범위, 난수 생성  (1) 2020.04.07
cJSON parsing error using window utf-8 txt file, Remove UTF-8 BOM  (0) 2015.01.08
c++ Easing code  (0) 2014.10.16
c++ Builder 패턴  (0) 2014.04.16
profile

겨울팥죽 여름빙수

@여름빙수

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!