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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:35:52+00:00 2026-05-22T01:35:52+00:00

string sentence = We know it contains ‘camel’ word.; // Camel can be in

  • 0
string sentence = "We know it contains 'camel' word.";
// Camel can be in different cases:
string s1 = "CAMEL";
string s2 = "CaMEL";
string s3 = "CAMeL";
// ...
string s4 = "Camel";
// ...
string s5 = "camel";

How to replace ‘camel’ in sentence with ‘horse’ despite of string.Replace doesn’t support ignoreCase on left string?

  • 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-22T01:35:53+00:00Added an answer on May 22, 2026 at 1:35 am

    Use a regular expression:

    var regex = new Regex( "camel", RegexOptions.IgnoreCase );
    var newSentence = regex.Replace( sentence, "horse" );
    

    Of course, this will also match words containing camel, but it’s not clear if you want that or not.

    If you need exact matches you can use a custom MatchEvaluator.

    public static class Evaluators
    {
        public static string Wrap( Match m, string original, string format )
        {
            // doesn't match the entire string, otherwise it is a match
            if (m.Length != original.Length)
            {
                // has a preceding letter or digit (i.e., not a real match).
                if (m.Index != 0 && char.IsLetterOrDigit( original[m.Index - 1] ))
                {
                    return m.Value;
                }
                // has a trailing letter or digit (i.e., not a real match).
                if (m.Index + m.Length != original.Length && char.IsLetterOrDigit( original[m.Index + m.Length] ))
                {
                    return m.Value;
                }
            }
            // it is a match, apply the format
            return string.Format( format, m.Value );
        }
    } 
    

    Used with the previous example to wrap the match in a span as:

    var regex = new Regex( highlightedWord, RegexOptions.IgnoreCase );
    foreach (var sentence in sentences)
    {
        var evaluator = new MatchEvaluator( match => Evaluators.Wrap( match, sentence, "<span class='red'>{0}</span>" ) );
        Console.WriteLine( regex.Replace( sentence, evaluator ) );
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a C# collection of strings. Each string is a sentence that can
More specifically, I'm trying to check if given string (a sentence) is in Turkish.
If I have an f# function that takes a string containing a sentence, what
In one sentence, what i ultimately need to know is how to share objects
Does anyone know of a Java library that handles finding sentence boundaries? I'm thinking
Using type std::string to accept a sentence, for practice (I haven't worked with strings
I'm trying to split a string into sentences (delimited by sentence delimiters). The code
I'm looking for the best approach for string find and replace in Java. This
string sentence = "X10 cats, Y20 dogs, 40 fish and 1 programmer."; string[] digits
I have a string that could have any sentence in it but somewhere in

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.