#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; auto t = uc.NewTransformer(); t.FromTo("A {txtA}. B {txtB$}.", "<{txtA}> <{txtB}>"); cout << t.Transform("A x y z . B x y z .") << endl; }