Files
sim/src/helper/StringOperations.h
2025-03-13 15:38:10 +01:00

18 lines
321 B
C++

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