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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:23:37+00:00 2026-05-13T17:23:37+00:00

I have a program (C#) that generates a list of strings (permutations of an

  • 0

I have a program (C#) that generates a list of strings (permutations of an original string). Most of the strings are random grouping of the original letters as expected (ie etam,aemt, team). I wanna find the one string in the list that is an actual English word, programatically. I need a thesaurus/dictionary to look up and compare each string to. Any one know of a resource available. Im using VS2008 in C#.

  • 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-13T17:23:38+00:00Added an answer on May 13, 2026 at 5:23 pm

    You could download a list of words from the web (say one of the files mentioned here: http://www.outpost9.com/files/WordLists.html), then then do a quick:

    // Read words from file.
    string [] words = ReadFromFile();
    
    Dictionary<String, List<String>> permuteDict = new Dictionary<String, List<String>>(StringComparer.OrdinalIgnoreCase);
    
    foreach (String word in words) {
        String sortedWord = new String(word.ToArray().Sort());
        if (!permuteDict.ContainsKey(sortedWord)) {
            permuteDict[sortedWord] = new List<String>();
        }
        permuteDict[sortedWord].Add(word);
    }
    
    // To do a lookup you can just use
    
    String sortedWordToLook = new String(wordToLook.ToArray().Sort());
    
    List<String> outWords;
    if (permuteDict.TryGetValue(sortedWordToLook, out outWords)) {
        foreach (String outWord in outWords) {
            Console.WriteLine(outWord);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Matlab program that generates a list x = 6.1692 8.1863 5.8092
I have a program that generates a static HTML file. I have a list
I have a program that generates a .shp file, and exports this as a
I have a program that generates/'rolls' two dice. I would like to output these
I have a program that generates a lot of data and puts it in
I have a Java program that generates Java classes for my application. Basically it
I have a working program in C++ that generates data for a Mandelbrot Set.
I have a python script that runs a program, which generates few .exe files
I was writing a little program that takes a list and generates a menu
Context: C# 3.0, .Net 3.5 Suppose I have a method that generates random numbers

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.