Mercurial > minori
annotate include/core/strings.h @ 100:f5940a575d83
track/constants: add many more video formats
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 03 Nov 2023 09:43:04 -0400 |
parents | 582b2fca1561 |
children | c537996cf67b |
rev | line source |
---|---|
9 | 1 #ifndef __core__strings_h |
2 #define __core__strings_h | |
15 | 3 |
9 | 4 #include <string> |
5 #include <vector> | |
15 | 6 |
64 | 7 class QString; |
8 | |
10 | 9 namespace Strings { |
15 | 10 |
9 | 11 /* Implode function: takes a vector of strings and turns it |
12 into a string, separated by delimiters. */ | |
13 std::string Implode(const std::vector<std::string>& vector, const std::string& delimiter); | |
14 | |
15 /* Substring removal functions */ | |
98
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
16 std::string ReplaceAll(std::string string, const std::string& find, const std::string& replace); |
9 | 17 std::string SanitizeLineEndings(const std::string& string); |
100
f5940a575d83
track/constants: add many more video formats
Paper <mrpapersonic@gmail.com>
parents:
98
diff
changeset
|
18 std::string RemoveHtmlTags(std::string string); |
f5940a575d83
track/constants: add many more video formats
Paper <mrpapersonic@gmail.com>
parents:
98
diff
changeset
|
19 std::string ParseHtmlEntities(std::string string); |
9 | 20 |
21 /* stupid HTML bullshit */ | |
22 std::string TextifySynopsis(const std::string& string); | |
15 | 23 |
24 std::string ToUpper(const std::string& string); | |
25 std::string ToLower(const std::string& string); | |
26 | |
98
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
27 /* 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
|
28 different string formats universal */ |
62 | 29 std::wstring ToWstring(const std::string& string); |
64 | 30 std::wstring ToWstring(const QString& string); |
62 | 31 std::string ToUtf8String(const std::wstring& wstring); |
64 | 32 std::string ToUtf8String(const QString& string); |
33 QString ToQString(const std::string& string); | |
34 QString ToQString(const std::wstring& wstring); | |
62 | 35 |
85 | 36 }; // namespace Strings |
37 | |
9 | 38 #endif // __core__strings_h |