字符截取替换(78)

//    ';'字符为界
size_t pos = 0, found = 0;
while (found != wstring::npos)
{
    found = m_strData.find(L";", pos);
    m_strLineData.push_back(wstring(m_strData, pos, found - pos));
    pos = found + 1;
}



//' '为界(空格)
wistringstream line(wstr);
wstring word;

while (line >> word) {
    temp.push_back(word);
}
// //