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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T18:36:46+00:00 2026-06-15T18:36:46+00:00

How I can searching some strings in C#? Well, if I have string James

  • 0

How I can searching some strings in C#? Well, if I have string “James Bond” and I am searching for “James” or “james” it will returning true, but if I am searching for “jame” it will return false. How I can do that?
Maybe I need little specific. I need searching based on word which splitted by ‘ ‘ See above. If I am searching for jame it will return false. If I use contains when I search for jame it will also return true right?

  • 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-15T18:36:47+00:00Added an answer on June 15, 2026 at 6:36 pm

    As per your question this is what you would use.

        var ex = "James Bond".ToLower(); //normalize case
        bool contains = ex.Split(' ').Any( x => x == "jame");
       //FALSE because the *word* "jame" is not found in "james bond"
    

    Since this question is causing a lot of confusion, you have to keep in mind all of the casing involved.

    var ex = "James Bond";
    bool contains = ex.Contains("jame");
    // FALSE because "jame" is not found in "James Bond" due to case-sensitivity
    
    var ex = "James Bond".ToLower(); //normalize case
    bool contains = ex.Contains("jame");
    // TRUE because "jame" is FOUND in "james bond" due to normalized case
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've done some searching, but can't seem to find a way to do this.
I have done some searching around but have not been able to figure out
I've done some searching (maybe I'm not describing my problem well enough) but haven't
I have been searching here for some time but haven't been able to find
How does selection sort work with strings? I've done some searching and can't seem
May be obvious but I tried searching and can't figure it out. I am
This is a probably a no brainer, and I've been searching but can't seem
I've been searching around but can't find much about this, but would cross-casting from
I'm looking for some help. I've tried searching this site and have tried amending
need some help from a regex jedi master: If I have a string of

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.