cpp_tools.cpp 546 B

12345678910111213141516171819202122
  1. #include "cpp_tools.h"
  2. #include <cctype>
  3. #include "tools.h"
  4. std::string trim(const std::string& str) {
  5. const size_t first = str.find_first_not_of(' ');
  6. if (first == std::string::npos) {
  7. // String contains only spaces or is empty
  8. return "";
  9. }
  10. const size_t last = str.find_last_not_of(' ');
  11. return str.substr(first, (last - first + 1));
  12. }
  13. std::string& toLowerStr(std::string& str) {
  14. for (auto& c : str) {
  15. if (c >= 'A' && c <= 'Z') {
  16. c = c - 'A' + 'a';
  17. }
  18. }
  19. return str;
  20. }