// // Created by StanislausCichocki on 13.03.2025. // #ifndef STRINGOPERATIONS_H #define STRINGOPERATIONS_H #include class StringOperations { public: static void splitString(const std::string &input, const std::string &delimiter, std::string &before, std::string &after); }; #endif //STRINGOPERATIONS_H