utils.h 782 B

1234567891011121314151617181920
  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. std::vector<std::string> split(const std::string &line, const std::string &by);
  14. bool startswith(const std::string &line, const std::string &has);
  15. bool endswith(const std::string &line, const std::string &has);
  16. bool in(const std::string &line, const std::string &has);
  17. std::string repr(const std::string &source);
  18. #endif