Tagged Questions
A word list is a corpus, or body of of speech elements, that has been stored on a computer, most commonly as a text file.
5
votes
2answers
116 views
Where can I find an exhaustive list of web attack strings [closed]
I'm looking for exhaustive list(s) of web attack strings, which includes as many possible injection strings as possible, including SQLis , XSS, XPATH injections, SSIs, etc. Preferably encoded in ...
4
votes
7answers
877 views
generate a list of english words containing consecutive consonant sounds
Start with this:
[G|C] * [T] *
Write a program that generates this:
Cat
Cut
Cute
City <-- NOTE: this one is wrong, because City has an "ESS" sound at the start.
Caught
...
Gate
Gotti
Gut
...
...
3
votes
4answers
239 views
Ruby anagram solver
I am wanting to write a anagram type solver in Ruby but it will work against a list of words, like so.
List of words is:
the
these
one
owner
I would allow the user to input some letters, e.g noe, ...
3
votes
1answer
237 views
Generating subsets of a permuted wordlist in Python
I have a list of words and I need to generate all possible permutations of these, with one caveat.
I currently use the following code:
from itertools import permutations
wordlist = ["word1", ...
2
votes
3answers
152 views
Python wordlist
I would like to compare the input letters(dictionary) with the list(textfile with words) and print the words matching the inputed letters. What have I done wrong?(I know i only have a print YES or ...
2
votes
2answers
390 views
Finding anagrams in a word list
I have a word list and a file containing a number of anagrams. These anagrams are words found in the word list. I need to develop an algorithm to find the matching words and produce them in an output ...
2
votes
4answers
98 views
Cleaning doubles out of a massive word list
I got a wordlist which is 56GB and I would like to remove doubles.
I've tried to approach this in java but I run out of space on my laptop after 2.5M words.
So I'm looking for an (online) program or ...
2
votes
1answer
876 views
Separate word lists for nouns, verbs, adjectives, etc
Usually word lists are 1 file that contains everything, but are there separately downloadable noun list, verb list, adjective list, etc?
I need them for English specifically.
2
votes
6answers
2k views
Free word list for use programatically?
A friend of mine was talking about a word game she liked to play where you try to convert one word to another (they have the same number of letters) by switching one letter at a time, where each ...
1
vote
3answers
43 views
Distinct value using hashtable
I'm doing distinct values when like looping through a list of values or fields.
Dictionary<string, int> _ddistinctValues = new Dictionary<string, int>();
foreach(string _word in _words) ...
1
vote
1answer
36 views
Can I store a Rails wordlist in database with ActiveRecord?
I created a Rails app, with some word lists that I would like to store in database. The wordlist is user-based and created dynamically, i.e. it will be changed according to user input. The app itself ...
1
vote
2answers
70 views
How to preg_match_all a set of words in any possible language?
I have a website that people enter lists of words into.
These lists of words could be written in any language in the world.
How can I extract these lists of words from their input data if I do not ...
1
vote
2answers
93 views
Emacs: How to generate a wordlist for a document?
I would like to generate an index for a LaTex document with RefTex, following this advice from the RefTex manual:
"...you might want to start from a word list of the document and remove all words ...
1
vote
4answers
295 views
Generating word list from word
looking for ideas to get started on what I would call a word obscurifier word list generator.
it takes a string, e.g. "hello" and basically looks to generate further possibilities of similar words ...
1
vote
4answers
269 views
Intersection of two large word lists
I have two word lists (180k and 260k), and I would like to generate a third file which is the set of words that appear in BOTH lists.
What is the best (most efficient) way of doing this? I've read ...
1
vote
0answers
86 views
Using GPLed word lists on website
Is it OK to use the contents of GPLed word lists or word lists that are part of GPLed works (e.g. hunspell dictionaries) on websites, making the contents, i.e. the words, accessible via search, ...
1
vote
3answers
228 views
Need dictionary database
I am planning to work in TRIE data structure for which I need a dictionary database or a text or word file containing the entire list of english words. It doesnt matter if the size is huge. Larger the ...
1
vote
1answer
618 views
List of proper names?
I'm trying to filter names out of text blobs. Currently I'm just generating a words list and filtering it by hand but I've got ~8k words to go so I'm looking for a better way. I could grab a ...
1
vote
4answers
1k views
0
votes
0answers
91 views
Word lookup C#? [migrated]
The goal of this code is to save a list of 250000 words with a number that indicates its frequency. The 250000 are sorted alphabetically but the frequency is unsorted. The idea is that when a the user ...
0
votes
2answers
130 views
Wrong Data Output When Generating Word List
i needed code to generate a word list from a pre-specified character set and starting at a specific position so i can stop then continue later.
my code isn't that good, so i would really appreciate ...
0
votes
1answer
52 views
Noun / Adjective / Etc Word Lists or Dictionaries (Common Words)
I am looking for dictionaries that are split up by parts of speech and are preferably more common words.
I am trying to generate random band names for fun.
I found a set of dictionaries HERE which ...
0
votes
1answer
105 views
What type of Trie is this?
I want to add words an opensource Java word splitting program for Khmer (a language that does not have spaces between words). The developers have not worked on it in a long time, and I haven't been ...
0
votes
3answers
179 views
where can I find a good wordlist
I'm looking for a file that is a wordlist and also is set up by type of word. For example something in this format
Nouns: {
bus
car
deck
elephant
...
}
Adjectives {
awful
...
0
votes
3answers
124 views
translate dutch sql data to english
i currently have a dutch sql 2005 database and would like to hopefully convert a good portion of it to english if possible. I have scoured google for options however im at a loss. Some sites are ...
0
votes
1answer
240 views
How to build a wordlist
So now I want to make Estonian wordlist ~about 20m unique words in lowercase. To get input for wordlist, corpus of Estonian can be used. Corpus files are in Text Encoding Initiative (TEI) format. I ...
0
votes
1answer
111 views
Where can I find a list of synonyms and corrected spelling?
Is there a source where I can download a text file that has a large collection of synonyms and correct spellings?
-6
votes
1answer
40 views
How can I lookup words into an alphabetically but randomly ordered by relevance 250000 wordlist? [closed]
The homework says that the aim is to use recursive binary search with backtracking but
I could“nt find any way of so. What do you think I should do?
Input:
SACK 100
TOM 60
Output:
SACK
SACKED
...
-6
votes
1answer
67 views
How do I use permutation to find all possible words from an input? [closed]
I am doing a project for my programming class, here are the 5 things that I am working towards. Thanks for your help!
list of valid words will be provided in a words.txt
ask for input that only ...