Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 649855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T21:59:22+00:00 2026-05-13T21:59:22+00:00

I am scraping a year value from the innerhtml of a span and the

  • 0

I am scraping a year value from the innerhtml of a span and the value is in brackets like this:

<span class="year_type">(2009)</span><br>

I want to get the value of the year without the brackets but am getting some compiler errors when trying to escape the “(” char.

My pattern:

const string yearPattern = "<span class=\"year_type\">\((?<year>.*?)\)</span>";

Complete Code:

const string yearPattern = "<span class=\"year_type\">\((?<year>.*?)\)</span>";
var regex = new Regex(yearPattern, RegexOptions.Singleline | RegexOptions.IgnoreCase);
Match match = regex.Match(data);
return match.Groups["year"].Value;

What is the best way to escape the ()

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T21:59:23+00:00Added an answer on May 13, 2026 at 9:59 pm

    use two slashes.

    const string yearPattern = "<span class=\"year_type\">\\((?<year>.*?)\\)</span>"; 
    

    or the @ literal string operator

    const string yearPattern = @"<span class=""year_type"">\(?<year>.*?)\)</span>"; 
    

    note; in your original regex you were missing an open-paren.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am scraping some data and I want to get the the value of
I am scraping data from web site using my java application and want to
I am scraping some website content which is like this - Company Stock Rs.
I am scraping some information from a 10 year old website that was built
I am calling a scraping class from Flask and the second time I instantiate
I did scraping text from webpage using scrapy. In spider, I have code like:
I've done web scraping before but it was never this complex. I want to
I am scraping data from I want to scrape three search engines. In My
I'm scraping data from the web, and I have several processes of my scraper
I have a scraping object basically. I want to be able to add POST

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.