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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T16:39:03+00:00 2026-06-05T16:39:03+00:00

Is there a way through the .Net aframework (or has someone written something similar)

  • 0

Is there a way through the .Net aframework (or has someone written something similar) to get an array of matches when being passed a string and a dictionary object?

First some background

I need to

I have csv file of sports teams which I load into a dictionary object, for example…

Team, Variants
Manchester United, Manchester United
Manchester United, manutd
Manchester United, man utd
Manchester United, manchester utd
Manchester United, mufc
Aston Villa, Aston Villa
Aston Villa, avfc
Newcastle United, Newcastle United
Newcastle United, toon army

Now I want to see if a string contains any of the phrases in that dictionary.

An example string…

"I wonder if man utd, aston villa andthe toon army will exist in this string"

Now I want to return is n array of strings that match, an example output would be the following:

["Manchester United","Aston Villa", "Newcastle United"]

I am currently using regex to split the words in the string. Then I am then looping through each word in the string and testing that against the dictionary (A note here is that the code does work but only single words not phrases and that’s due to the regex)

public static List<string> CheckStringWithDictionary(string input, Dictionary<string, string> dic, int minimumLength)
{
    List<string>lst = new List<string>();
    string myValue = "";
        foreach (Match match in RegexSplitStringToArray(input, minimumLength))
        {
            if (dic.TryGetValue(match.Value, out myValue))
                lst.Add(myValue);
        }
    return lst;
}

public static MatchCollection RegexSplitStringToArray(string input, int minLength)
{
    Regex csvSplit = new Regex("(\\w{3,})", RegexOptions.Compiled);
    return csvSplit.Matches(input);
}

The reason for looping the string rather than the dictionary is because the dictionary will contain over 10,000+ items and therefore be very inefficient in terms looping through that.

Thanks for your patiece so far, and now to the question…

Is there a way through the .Net aframework (or has someone written something similar) to get an array of matches when being passed a string and a dictionary object?

Thanks all

  • 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-05T16:39:04+00:00Added an answer on June 5, 2026 at 4:39 pm

    I would use LINQ for this:

     string input = "I wonder if man utd, aston villa andthe toon army will exist in this string";
     List<string> matches = dic.
                               .Where(kvp => input.Contains(kvp.Key))
                               .Select(kvp => kvp.Value)
                               .ToList();
    

    This is still effectively looping through the dictionary, but that’s likely going to be better than most alternatives, even with a large dictionary, if you need to handle the multiple word options.

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

Sidebar

Related Questions

Is there a possible way to refer an object through it's name in Vb.Net?
Is there a way of iterating through an array but performing an operation on
Is there a way with the .NET Framework to send emails through an SSL
Is there a way through the .net framework to determine if a folder is
Is there a way through the Revit API to change which document is the
If I have 3 radio buttons, is there a way through jQuery of finding
I was wondering if there was any way through C# or C++ to send
Is there a way to iterate through every node in a neo4j database using
Is there a way to look through the cache for all objects in the
Is there a way to itterate through all of the terms held against a

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.