Home
Map
HTML Paragraph ExampleUse Regex to get HTML paragraphs. Include the System.Text.RegularExpressions namespace.
C#
This page was last reviewed on Nov 7, 2023.
Paragraph, HTML. HTML pages have paragraphs in them. In a C# program, we can match these paragraphs with Regex. This is useful for extracting summaries from many pages or articles.
C# method info. This simple method extracts and matches the first paragraph element in an HTML document. This function uses the regular expression library included in .NET.
HTML Title
Regex.Match
Example. We scan an entire HTML file and extract text in between a paragraph opening tag and closing tag. You can put this method, GetFirstParagraph, in a utility class.
Step 1 We specify some HTML text as a string literal. Then we pass this string to the GetFirstParagraph method.
Step 2 GetFirstParagraph() uses the static Regex.Match method declared in the System.Text.RegularExpressions namespace.
Info The Regex looks for brackets with the letter "p" in between them. It then skips zero or more whitespace characters inside those tags.
Finally The Regex captures the minimum number of characters between the start tag and end tag. Both tags must be found for the match to proceed.
using System; using System.Text.RegularExpressions; class Program { static void Main() { // Step 1: call method with html text. string html = "<html><title>...</title><body><p>Result.</p></body></html>"; Console.WriteLine(GetFirstParagraph(html)); } /// <summary> /// Get first paragraph between P tags. /// </summary> static string GetFirstParagraph(string file) { // Step 2: use Regex to match a paragraph. Match match = Regex.Match(file, @"<p>\s*(.+?)\s*</p>"); if (match.Success) { return match.Groups[1].Value; } else { return ""; } } }
Result.
A discussion. Understanding regular expressions can be difficult, but this one is fairly simple. The method is not flexible. It is hard to parse HTML correctly all the time without an HTML parser.
String Remove HTML
Summary. We looked at how you can match the paragraph element in your HTML files. This is useful code that I run several times a day, and it functions correctly.
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
This page was last updated on Nov 7, 2023 (edit).
Home
Changes
© 2007-2024 Sam Allen.