forked from holubecmichal/MemGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.h
70 lines (55 loc) · 1.48 KB
/
utility.h
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/////////////////////////////////////////////////////////////////////////
//
// Bakalářská práce
// Vizualizace datových struktur pro verifikační nástroje
// Michael Holubec
// GNU LGPLv3
//
//////////////////////////////////////////////////////////////////////////
//
// Created by Michael Holubec on 06.03.16.
//
#ifndef MEMGRAPH_UTILITY_H
#define MEMGRAPH_UTILITY_H
#include <iosfwd>
#include <vector>
#include <string>
#include <sstream>
#include <algorithm>
class Utility {
private:
public:
// source: http://stackoverflow.com/posts/217605/revisions
// trim from start
static inline std::string <rim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
return s;
}
// trim from end
static inline std::string &rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
return s;
}
// trim from both ends
static inline std::string &trim(std::string &s) {
return ltrim(rtrim(s));
}
// source: http://stackoverflow.com/posts/1162786/revisions
static inline std::string escape_quotes(const std::string &before)
{
std::string after;
after.reserve(before.length() + 4);
for (std::string::size_type i = 0; i < before.length(); ++i) {
switch (before[i]) {
case '"':
case '\\':
after += '\\';
// Fall through.
default:
after += before[i];
}
}
return after;
}
};
#endif //MEMGRAPH_UTILITY_H