blob: 2d6986c8635d17aedb2f8fedd9ddb918b1cf4871 (
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
|
#include "dict.h"
#include <string>
#include <vector>
void TokenizeStringSeparator(
const std::string& str,
const std::string& separator,
std::vector<std::string>* tokens) {
size_t pos = 0;
std::string::size_type nextPos = str.find(separator, pos);
while (nextPos != std::string::npos) {
tokens->push_back(str.substr(pos, nextPos - pos));
pos = nextPos + separator.size();
nextPos = str.find(separator, pos);
}
tokens->push_back(str.substr(pos, nextPos - pos));
}
void Dict::AsVector(const WordID& id, std::vector<std::string>* results) const {
results->clear();
TokenizeStringSeparator(Convert(id), " ||| ", results);
}
|