Top "Words" questions

A word is the amount of data that a processor can fit in its general-purpose registers -- effectively the amount of data the processor can handle "at once". Programming-related questions concerning Microsoft Word should NOT use this tag - use the tag [ms-word] instead.

Break long word with CSS

I have a situation where there can be long words like 'hellowordsometext' or integer like '1234567891122' without any space …

html css long-integer break words
How to break long words in a table td?

This is what I have: <td style='width:500px; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;…

css html-table long-integer words
how to generate list of (unique) words from text file in ubuntu?

I have an ASCII text file. I want to generate a list of all "words" from that file using one …

ubuntu unique words
Finding the most popular words in a list

I have a list of words: words = ['all', 'awesome', 'all', 'yeah', 'bye', 'all', 'yeah'] And I want to get a …

python string list words
Words combinations without repetition

I have 10 words. How can I get all possible combinations of 5 words (n=10, k=5). The order does not matter. For …

c# string combinations words
Reading a sentence until ENTER key pressed using 2-D char array

I need to read a sentence word by word until "ENTER" key is pressed. I used a do..while loop …

c++ arrays string enter words
Determine the difficulty of an english word

I am working a word based game. My word database contains around 10,000 english words (sorted alphabetically). I am planning to …

algorithm words
counting the number of sentences in a paragraph in c

As part of my course, I have to learn C using Turbo C (unfortunately). Our teacher asked us to make …

c while-loop char words text-segmentation
Get first N characters from string without cutting the whole words

I want to know if there an easy way to get only N symbols from string without cutting the whole …

ruby ruby-on-rails-3 jruby substring words
Regular Expression - Exclude list of words for a name

I'm trying to make a regular expression that accepts this: Only a-z, 0-9, _ chars, with a minimum length of 3 admin, …

java regex list words