#include <iostream>
#include "uCalc.h"

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto t = uc.NewTransformer();
   // "ID" and ":" are Anchors. "{id}" is the Variable.
   t.FromTo("ID: {id}", "Found ID: {id}");
   cout << t.Transform("ID: 12345").Text() << endl;
}