Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
static std::string Replace( std::string input, char from, std::string to) { return input.replace(input.find(from), 1, to); }
static std::string Replace( std::string input, char from, std::string to) { #ifdef __Windows__ return input.replace(input.find(from), 1, to); #else if (__Linux__) return input.replace(to, input.find(from), 1); #endif }