using uCalcSoftware; var uc = new uCalc(); using (var s = new uCalc.String("Some text

This is a paragraph.

more text.")) { // Extract the entire paragraph tag, including its start and end tags. var p_tag = s.BetweenInclusive("

", "

"); Console.WriteLine(p_tag); }