Mercurial > minori
annotate include/core/strings.h @ 98:582b2fca1561
strings: parse HTML entities when reading synopsis, make the
toupper and tolower functions more sane
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Thu, 02 Nov 2023 15:22:02 -0400 |
| parents | c69230dc2b5d |
| children | f5940a575d83 |
| 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); |
| 18 std::string RemoveHtmlTags(const std::string& string); | |
|
98
582b2fca1561
strings: parse HTML entities when reading synopsis, make the
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
19 std::string ParseHtmlEntities(const 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 |
