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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:06:18+00:00 2026-06-15T14:06:18+00:00

I have a list of String s. How can I check if the list

  • 0

I have a list of Strings.

How can I check if the list of Strings contains a string with the prefix 2#?

I saw this:
Find substring in a list of strings

I tried the following:

if ((startId == item.ID.ToString())
       && (item.NextButtons.Contains(s => s.Contains("2#")))) ;
   {
     OK = false;
   }
  • 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-15T14:06:20+00:00Added an answer on June 15, 2026 at 2:06 pm

    If I understood correctly:

    yourList.Any(s => s.Contains("2#"))
    

    Use the LINQ Any method to determine if any element of a collections satisfies the condition.

    The condition is a lambda method that takes each string element of your list as an input parameter and checks if it Contains the string "2#". It does this until the first one is found and then returns either true or false.

    If you wanted to return the actual string, you would use the FirstOrDefault method instead of Any. It would then return either the string or null, if none are found.

    edit: if the 2# has to be at the start of the string, see @Some1.Kill.The.DJ’s answer.

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

Sidebar

Related Questions

I have a known list of strings like the following: List<string> groupNames = new
I have code that generates a List<string[]> variable but can't quite figure out how
I have a variable that can either contain a list of strings or a
I have a List of String objects that are pipe delimited. something like this:
I have a list like this Dim emailList as new List(Of String) emailList.Add(one@domain.com) emailList.Add(two@domain.com)
I have a String List with items like this Root Root/Item1 Root/Item2 Root/Item3/SubItem1 Root/Item3/SubItem2
In Java, I have the following method: public String normalizeList(List<String> keys) { // ...
How to check a list contains a string or any number followed by that
I have a list of string arrays: List<string[]> parsedRaw = new List<string[]>(); This list
I have a List of string that contains files in which should be ignored

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.