Remove all HTML tags or retrieve text matching HTML tags

Source: Internet
Author: User
Use regular expressions to operate HTML tags
// Retrieve the value of the matching item in the specified HTML Tag. regexoptions. ignorecase is case-insensitive, and regexoptions. multiline is case-insensitive.
Match titlematch = RegEx. match ("<title> webform3 </title>", "<title> ([^ <] *) </title>", regexoptions. ignorecase | regexoptions. multiline );
// Retrieve the value of the first matching item
String tmpstrtitle = titlematch. Groups [1]. value;
// Replace all HTML tags on the HTML page
Label1.text = RegEx. Replace (label1.text. Trim (), "<. +?> "," ") +" ********* "+ Titlematch. Groups [1]. value;
String tmpstr = string. empty;
// Determine whether the matching regular expression is successful
If (RegEx. Match (tmpstr, "<. +?> "). Success)
{
// Operation
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.