8 lines
190 B
C++
8 lines
190 B
C++
#include <string>
|
|
|
|
class StringHelper
|
|
{
|
|
public:
|
|
static bool Replace(std::string& str, const std::string& toReplace, const std::string& replaceBy);
|
|
static void ToUpper(std::string& str);
|
|
}; |