using uCalcSoftware; var uc = new uCalc(); // Creating a "Clean View" of a log or configuration file by replacing all // actual data values with a placeholder, leaving only the structural identifiers. var t = new uCalc.Transformer(); // Replace every literal with a generic placeholder t.FromTo("{@Literal}", "?"); string input = """ setting_a = 500; setting_b = "active"; """; Console.WriteLine(t.Transform(input));