12345678910111213141516171819202122232425 |
- /*
- * StringHelper.h
- *
- * Created on: 2024年7月19日
- * Author: m
- */
- #ifndef JNI_INCLUDE_UTILS_STRINGHELPER_H_
- #define JNI_INCLUDE_UTILS_STRINGHELPER_H_
- #include <algorithm>
- #include <cctype>
- #include <string>
- class StringHelper {
- public:
- static void toLowerCase(std::string& str) {
- std::transform(str.begin(), str.end(), str.begin(),
- [](unsigned char c) { return std::tolower(c); });
- }
- };
- #endif /* JNI_INCLUDE_UTILS_STRINGHELPER_H_ */
|