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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:38:53+00:00 2026-05-26T02:38:53+00:00

What will be the regular expression to match a word if its not in

  • 0

What will be the regular expression to match a word if its not in the start of the string? For example, for United to be matched, the string should be "We are United on it". It should not be matched for "United States". I used expression \w+\s+(United) but it returns are United when matching. I just want United to be matched.

What expression I’ll be using? And, as I’ll replace the matched expression, do I need a loop for replacing multiple occurrences?

Following is some part of the code:

     var s = "We are United on it.";
     var regex = new Regex(@"\w+\s+(United)", RegexOptions.IgnoreCase);
         if (regex.IsMatch(s))
         {
             returnString = Regex.Replace(s,@"\w+\s+(United)" , "xyz");
         }

Any code example will be greatly helpful. 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-26T02:38:54+00:00Added an answer on May 26, 2026 at 2:38 am

    In general, when you want to impose a condition on what is next to a match, but not include that text in the match, you need an assertion, for example one of

    (positive or negative) (look-behind or look-ahead)
    

    In this case we want to assert something about what comes just before the match, so we need a look-behind assertion. And since what we want to assert is: “just before the match, don’t have the start of the string”, we need a negative look-behind assertion:

    string shouldPass = "We are United";
    string shouldFail = "United we stand";
    
    var regex = new Regex("(?<!^)United");
    
    Console.WriteLine("{0} result: {1}", shouldPass, regex.IsMatch(shouldPass));
    Console.WriteLine("{0} result: {1}", shouldFail, regex.IsMatch(shouldFail));
    
    Console.ReadKey();
    

    The syntax for a look-behind negative assertion is (?<!text), replacing text with whatever you are saying should not appear just before the match.

    As an additional point, you don’t really need to separately call .IsMatch and .Replace – .Replace will simply do nothing if there is no match.

    And you don’t need a loop – .Replace will replace all matches, unless you take specifically call the overload that limits the number of replacements.

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

Sidebar

Related Questions

I want a Perl regular expression that will match duplicated words in a string.
I need a regular expression that will match any string containing at most 2
What's a regular expression that will match a string only containing digits 0 through
I need to write a regular expression that will match everything in the string
I'm looking for a regular expression that which will match a string ##test## in
I need a regular expression that will match the first letter of a song
I'm looking for a regular expression that will match all strings EXCEPT those that
I'd like to create a regular expression that will match and return based on
I'm trying to write a python regular expression that will match both these URLs:
Does anyone have a regular expression handy that will match any legal DNS hostname

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.