using uCalcSoftware; var uc = new uCalc(); var t = new uCalc.Transformer(); t.Text = "Hello World"; t.Pattern("World"); t.Find(); var matches = t.Matches; Console.WriteLine($"Match found at position: {matches[0].StartPosition}");