blob: b34ab4afa2e22f08af704e62bdfd196b96512dac (
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
|
#include <bridge/colors.hpp>
#include <algorithm>
#include <iostream>
void remove_irc_colors(std::string& str)
{
auto it = std::remove_if(str.begin(), str.end(),
[](const char c)
{
if (c == IRC_COLOR_BOLD_CHAR || c == IRC_COLOR_COLOR_CHAR ||
c == IRC_COLOR_FIXED_CHAR || c == IRC_COLOR_RESET_CHAR ||
c == IRC_COLOR_REVERSE_CHAR || c == IRC_COLOR_REVERSE2_CHAR ||
c == IRC_COLOR_UNDERLINE_CHAR || c == IRC_COLOR_ITALIC_CHAR ||
// HACK: until we properly handle things
// like ^AVERSION^A, remove the ^A chars
// here.
c == '\u0001')
return true;
return false;
}
);
str.erase(it, str.end());
}
|