utils.h 902 B

1234567891011121314151617181920212223242526
  1. #ifndef UTILS_H
  2. #define UTILS_H
  3. #include <string>
  4. #include <regex>
  5. #include <vector>
  6. const char *trim_path(const char *filepath);
  7. bool replace(std::string &str, const std::string &from, const std::string &to);
  8. bool replace(std::string &str, const char *from, const char *to);
  9. void ansi_clean(std::string &str);
  10. void high_ascii(std::string &str);
  11. void trim(std::string &str);
  12. std::smatch ansi_newline(const std::string &str);
  13. std::string clean_string(const std::string &source);
  14. std::vector<std::string> split(const std::string &line);
  15. std::vector<std::string> split(const std::string &line, const std::string &by);
  16. bool startswith(const std::string &line, const std::string &has);
  17. bool endswith(const std::string &line, const std::string &has);
  18. bool in(const std::string &line, const std::string &has);
  19. std::string repr(const std::string &source);
  20. bool file_exists(const std::string &name);
  21. #endif