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 7890355
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:19:59+00:00 2026-06-03T06:19:59+00:00

How can I use the first group in Regex.Replace? I’ve tried using $1 like

  • 0

How can I use the first group in Regex.Replace?
I’ve tried using $1 like the documentation said. Also it doesn’t matter if I use grouping with ?: or not…

string text = "<font color="#aa66bb">farbig</font>"     

/// this does not work
Regex.Replace(text, "&lt;font color=&quot;#(?:[\\d\\w]{6})&quot;&gt;", "<font color=\"#$1\">");
// => "<font color=\"#$1\">farbig&lt;/font&gt;"

// this works fine though  
Regex.Match(text, "&lt;font color=&quot;#([\\d\\w]{6})&quot;&gt;").Groups[1];
// => aa66bb

So what am I doing wrong here?

  • 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-06-03T06:20:01+00:00Added an answer on June 3, 2026 at 6:20 am

    Could it be just that you are using a non-capturing group here?

    Regex.Replace(this.Text, "&lt;font color=&quot;#(?:[\\d\\w]{6})&quot;&gt;", "<font color=\"#$1\">");
    

    it is:

    (?:[\\d\\w]{6})
    

    instead of

    ([\\d\\w]{6})
    

    You can use @ btw to escape all the special chars: @"(?:[\d\w]{6})"

    Also, have you tried

    "<font color=\"#" + $1 + "\">"
    

    Otherwise I don’t think c# will know $1 from an ordinary string value

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

Sidebar

Related Questions

First i briefly want to know how you can use oauth works. What we
First the requirements: By management requirements, I can't use open source code. I need
HTML can use a #name link to direct users to named anchor elements, like
I want to be able to use a RegEx to parse out ranges like
First of all, I'm using API Level 10, so I need solutions that use
I'd like to use boost with QtCreator. I'm using Windows 7 and installed the
I can use the Network tab in the Google Chrome Web Inspector to debug
I can use -d option to put files into a database. mongofiles -d test
I can use GD or something to draw user-selected shapes by writing some lines
I can use: Mage::getModel('cms/page')->getCollection()->addStoreFilter($store_id); to retrieve a collection of CMS pages filtered by Store

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.