blob: bcc63f0e818f1a5d3a85952af53f1b1a380d6b2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "strip.h"
#include "ascii.h"
#include <util/string/reverse.h>
bool Collapse(const TString& from, TString& to, size_t maxLen) {
return CollapseImpl<TString, bool (*)(unsigned char)>(from, to, maxLen, IsAsciiSpace);
}
void CollapseText(const TString& from, TString& to, size_t maxLen) {
Collapse(from, to, maxLen);
StripInPlace(to);
if (to.size() >= maxLen) {
to.remove(maxLen - 5); // " ..."
ReverseInPlace(to);
size_t pos = to.find_first_of(" .,;");
if (pos != TString::npos && pos < 32) {
to.remove(0, pos + 1);
}
ReverseInPlace(to);
to.append(" ...");
}
}
|