utils.h 470 B

12345678910111213141516
  1. #ifndef UTILS_H
  2. #define UTILS_H
  3. #include <string>
  4. #include <regex>
  5. #include <vector>
  6. bool replace(std::string &str, const std::string &from, const std::string &to);
  7. bool replace(std::string &str, const char *from, const char *to);
  8. void ansi_clean(std::string &str);
  9. void high_ascii(std::string &str);
  10. std::smatch ansi_newline(const std::string &str);
  11. std::string clean_string(const std::string &source);
  12. std::vector<std::string> split(const std::string &line);
  13. #endif