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

  • Home
  • SEARCH
  • 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 6073389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:15:56+00:00 2026-05-23T10:15:56+00:00

How using regexp replace something in code that is not a comment? ..PATTERN.. PATTERN

  • 0

How using regexp replace something in code that is not a comment?

..PATTERN.. PATTERN // .. PATTERN ..

to

..ANOTHER.. ANOTHER // .. PATTERN ..

Comments can be // or /* */

Regexp to find comments is:

/\*(.|[\r\n])*?\*/|(//.*)
  • 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-23T10:15:56+00:00Added an answer on May 23, 2026 at 10:15 am

    You can easily do this for single line comments by using a negative lookbehind (but still prone to problem of literal string of the form “….//…..”):

    string target = "replace // don't replace";
    var output = Regex.Replace(target, "(?<!//.*)replace", "new string");
    Console.WriteLine(output); //  new string // don't replace
    

    Maybe this could work for multiline:

    string target = 
        @"replace;
    /*
    * don't replace
    */
    replace;
        ";
    
    var output = Regex.Replace(target, @"(?<!./\*\s*)replace(?!\s*\*/)", "new string", RegexOptions.Singleline);
    
    Console.WriteLine(output); 
    

    output:

    new string;
    /*
    * don’t replace
    */
    new string;

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

Sidebar

Related Questions

im new with regexp, so can i ask for some assistance Using string.replace function
I'm new to using regexp, can someone give me the regexp that will strip
I'm trying to find eveything inside a div using regexp. I'm aware that there
I have an old piece of code that performs find and replace of tokens
Currently we're using javascript new RegExp('#[^,#=!\s][^,#=!\s]*') (see [1]) and it mostly works, except that
I want to find First Word matching from Given Text and replace with another
Currently I have some code to replace strings in a file that looks like
I'm trying to parse strings that represent source code, something like this: [code lang=html]
I noticed something that seems odd in the following code: MatchCollection mc = Regex.Matches(myString,
I'm using excel 2007 and i'm adding a macro that looks something like this

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.