blob: e01ad649a04200e944e57e66ba577716792ba399 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
using namespace std;
int main(void)
{
string s("a\tb\tc\td");
string::iterator it = s.begin();
char d = '\t';
string tmp;
size_t parts = 4;
size_t c = 0;
while(true) {
if (parts > 0 && c == parts-1) {
while(it != s.end()) {
tmp += *it;
it++;
}
cout << tmp << endl;
break;
}
if (it == s.end()) { cout << tmp << endl; break; }
if (*it != d) tmp += *it;
else {
cout << tmp << endl;
tmp.clear();
c++;
}
it++;
}
cout << "---" << endl;
stringstream ss(s);
string si;
parts = 0;
c = 0;
while(true)
{
if (parts > 0 && c == parts-1) {
getline(ss, si);
cout << si << endl;
break;
}
if(!getline(ss, si, '\t')) break;
cout << si << endl;
c++;
}
}
|