RegexUtils.hpp 770 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-18
  6. * Changed: 2022-05-09
  7. *
  8. * */
  9. #ifndef LS_STD_REGEX_UTILS_HPP
  10. #define LS_STD_REGEX_UTILS_HPP
  11. #include <string>
  12. #include <regex>
  13. namespace ls
  14. {
  15. namespace std
  16. {
  17. namespace core
  18. {
  19. class RegexUtils
  20. {
  21. public:
  22. RegexUtils() = default;
  23. ~RegexUtils() = default;
  24. static ::std::string escapeString(const ::std::string &_text)
  25. {
  26. static ::std::regex regexMetaEscape(R"(([\^\$\\\.\*\+\?\(\)\[\]\{\}\|]))");
  27. return ::std::regex_replace(_text, regexMetaEscape, R"(\$1)");
  28. }
  29. };
  30. }
  31. }
  32. }
  33. #endif