StringTools/Src/Exec/main.cpp

10 lines
192 B
C++
Raw Normal View History

2021-11-20 18:37:20 +01:00
#include <iostream>
2022-02-11 00:33:03 +01:00
#include <StringTools/StringTools.h>
2021-11-20 18:37:20 +01:00
int main()
{
2022-02-11 00:33:03 +01:00
std::cout << StringTools::Replace("Hello, ${where}!\n", "${where}", "World") << std::endl;
return 0;
2021-11-20 18:37:20 +01:00
}