0
votes
2answers
13 views
Long words breaking layout. What about with HTML input in UTF-8?
Imagine if I have in a text something like [a href="this-is-a-very-big-link"]this is ok[/a] (switch < and > with [ and ])... And also this-is-a-very-big-word.
I need to cut the …
1
vote
4answers
91 views
Does WordNet have “levels”? (NLP)
For example...
Chicken is an animal.
Burrito is a food.
WordNet allows you to do "is-a"...the hiearchy feature.
However, how do I know when to stop travelling up the tree? I wan …
2
votes
3answers
199 views
How to convert numbers to words in Erlang?
I found this interesting question about converting numbers into "words":
http://stackoverflow.com/questions/309884/code-golf-number-to-words
I would really like to see how you wo …
0
votes
1answer
50 views
Limiting characters inside HTML paragraph
I want to make it so there's only 350 characters inside the paragraph, regardless of how many characters are put into it, I only want 350 displayed.
How can I do this?
The text is …
3
votes
10answers
2k views
Counting the number of occurrences of words in a textfile
How could I go about keeping track of the number of times a word appears in a textfile? I would like to do this for every word.
For example, if the input is something like:
"the …
0
votes
6answers
91 views
PHP - Which word is properly typed?
Hey,
I'm looking for help on writing a script to check a list of phrases/words and compare them to one another and see which one is the properly typed phrase/word.
$arr1 = array( …
1
vote
3answers
130 views
Tokenizer, Stop Word Removal, Stemming in Java
Hi there
I am looking for a class or method that takes a long string of many 100s of words and tokenizes, removes the stop words and stems for use in an IR system.
For example:
…
0
votes
0answers
32 views
CKeditor character/word count
I need to display character count and word count with the new CKeditor.
I tried to search for a plugin but there are none, except few hacks for the old fckeditor.
3
votes
4answers
145 views
How do I search for a ‘blank tile’ in a scrabble application? (PHP)
I created this application a couple of months ago: http://www.mondofacto.com/word-tools/scrabble-solver.html
The application lets the user enter the set of letters they are given, …
5
votes
3answers
118 views
PHP: word definition script?
I am developing a web page in which I am accepting input words from user and when user will submit those words then I want to display definition of those words or wikipedia link of …
4
votes
11answers
139 views
Where to get a list of almost all the words in English language?
I want to get some random text generated.
I tried writing a basic Java programme,
int nowords = r.nextInt(2000);
int i, j;
for (i = 0; i < nowords; i++) {
…
0
votes
1answer
120 views
AppleScript Word Count Service
Hi folks,
I am trying to create a service in OSX leopard that counts the number of words of selected text. I have automator set to run an applescript, with the following put in it …
3
votes
10answers
1k views
How do I do word Stemming or Lemmatization?
I've tried PorterStemmer and Snowball but both don't work on all words, missing some very common ones.
My test words are: "cats running ran cactus cactuses community communities" …
3
votes
8answers
285 views
Detecting misspelled words
I have a list of airport names and my users have the possibility to enter one airport name to select it for futher processing.
How would you handle misspelled names and present a …
0
votes
5answers
320 views
PHP Limit string output by specific characters
Hello,
I am trying to limit the number of characters returned from a string using PHP. I've applied a solution that just seemed to crash the server (high load) / infinite loop. So …
