1 2 3 4 5 6 7 8 9
#include <iostream> #include <StringTools/StringTools.h> int main() { std::cout << StringTools::Replace("Hello, ${where}!\n", "${where}", "World") << std::endl; return 0; }