mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-05 12:18:21 +02:00
8 lines
190 B
C++
8 lines
190 B
C++
#include <utils/string.h>
|
|
|
|
#include <regex>
|
|
|
|
|
|
std::string Utils::String::escape(const std::string& string) {
|
|
return "\"" + std::regex_replace(string, std::regex("\""), "\\\"") + "\"";
|
|
}
|