Mercurial > minori
comparison 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 |
comparison
equal
deleted
inserted
replaced
99:503bc1547d49 | 100:f5940a575d83 |
---|---|
13 std::string Implode(const std::vector<std::string>& vector, const std::string& delimiter); | 13 std::string Implode(const std::vector<std::string>& vector, const std::string& delimiter); |
14 | 14 |
15 /* Substring removal functions */ | 15 /* Substring removal functions */ |
16 std::string ReplaceAll(std::string string, const std::string& find, const std::string& replace); | 16 std::string ReplaceAll(std::string string, const std::string& find, const std::string& replace); |
17 std::string SanitizeLineEndings(const std::string& string); | 17 std::string SanitizeLineEndings(const std::string& string); |
18 std::string RemoveHtmlTags(const std::string& string); | 18 std::string RemoveHtmlTags(std::string string); |
19 std::string ParseHtmlEntities(const std::string& string); | 19 std::string ParseHtmlEntities(std::string string); |
20 | 20 |
21 /* stupid HTML bullshit */ | 21 /* stupid HTML bullshit */ |
22 std::string TextifySynopsis(const std::string& string); | 22 std::string TextifySynopsis(const std::string& string); |
23 | 23 |
24 std::string ToUpper(const std::string& string); | 24 std::string ToUpper(const std::string& string); |