Mercurial > minori
annotate include/core/strings.h @ 114:ab191e28e69d
*: add initial torrent stuff
WOAH!
these checkboxes are a pain in my fucking ass
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 07 Nov 2023 08:03:42 -0500 |
parents | 6d8da6e64d61 |
children | 254b1d2b7096 |
rev | line source |
---|---|
9 | 1 #ifndef __core__strings_h |
2 #define __core__strings_h | |
15 | 3 |
9 | 4 #include <string> |
5 #include <vector> | |
105
6d8da6e64d61
theme: add dark stylesheet, make it actually usable
Paper <mrpapersonic@gmail.com>
parents:
102
diff
changeset
|
6 #include <array> |
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
7 #include <cstdint> |
15 | 8 |
64 | 9 class QString; |
10 | |
10 | 11 namespace Strings { |
15 | 12 |
9 | 13 /* Implode function: takes a vector of strings and turns it |
14 into a string, separated by delimiters. */ | |
15 std::string Implode(const std::vector<std::string>& vector, const std::string& delimiter); | |
16 | |
17 /* Substring removal functions */ | |
98
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
18 std::string ReplaceAll(std::string string, const std::string& find, const std::string& replace); |
9 | 19 std::string SanitizeLineEndings(const std::string& string); |
100
f5940a575d83
track/constants: add many more video formats
Paper <mrpapersonic@gmail.com>
parents:
98
diff
changeset
|
20 std::string RemoveHtmlTags(std::string string); |
f5940a575d83
track/constants: add many more video formats
Paper <mrpapersonic@gmail.com>
parents:
98
diff
changeset
|
21 std::string ParseHtmlEntities(std::string string); |
9 | 22 |
23 /* stupid HTML bullshit */ | |
24 std::string TextifySynopsis(const std::string& string); | |
15 | 25 |
26 std::string ToUpper(const std::string& string); | |
27 std::string ToLower(const std::string& string); | |
28 | |
98
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
29 /* functions that make the way we convert from and to |
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
30 different string formats universal */ |
62 | 31 std::wstring ToWstring(const std::string& string); |
64 | 32 std::wstring ToWstring(const QString& string); |
62 | 33 std::string ToUtf8String(const std::wstring& wstring); |
64 | 34 std::string ToUtf8String(const QString& string); |
35 QString ToQString(const std::string& string); | |
36 QString ToQString(const std::wstring& wstring); | |
62 | 37 |
101
c537996cf67b
*: multitude of config changes
Paper <mrpapersonic@gmail.com>
parents:
100
diff
changeset
|
38 /* arithmetic :) */ |
c537996cf67b
*: multitude of config changes
Paper <mrpapersonic@gmail.com>
parents:
100
diff
changeset
|
39 int ToInt(const std::string& str, int def = 0); |
c537996cf67b
*: multitude of config changes
Paper <mrpapersonic@gmail.com>
parents:
100
diff
changeset
|
40 |
114
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
41 uint64_t HumanReadableSizeToBytes(const std::string& str); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
42 |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
43 std::string RemoveLeadingChars(std::string s, const char c); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
44 std::string RemoveTrailingChars(std::string s, const char c); |
ab191e28e69d
*: add initial torrent stuff
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
45 |
102 | 46 bool BeginningMatchesSubstring(const std::string& str, const std::string& sub); |
47 | |
85 | 48 }; // namespace Strings |
49 | |
9 | 50 #endif // __core__strings_h |