#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; uCalc::Transformer t; // Use {s(1)} to get just the text inside the quotes t.FromTo("msg = {@String:s}", "{s(1)}"); string input = R"(msg = "Welcome to uCalc!")"; cout << t.Transform(input) << endl; }