aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/strip.cpp
blob: 1cf5e33096ff2d95253b6de64f0cff980a730342 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "strip.h"
#include "ascii.h"

#include <util/string/reverse.h>

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(" ...");
    }
}