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.

Can grep show only words that match search pattern?

Is there a way to make grep output "words" from files that match the search expression? If I want to …

grep words
Replace new lines with a comma delimiter with Notepad++?

I have a Notepad++ question. How can I take the below words in Notepad++ (which is on different lines) Apples …

notepad++ words
Converting a sentence string to a string array of words in Java

I need my Java program to take a string like: "This is a sample sentence." and turn it into a …

java string spaces words
Converting a String to a List of Words?

I'm trying to convert a string to a list of words using python. I want to take something like the …

python string list words text-segmentation
How to get english language word database?

I need a database of every single valid word in English. I checked the /usr/share/dict/words file, it …

database words
PHP: Express Number in Words

Is there a function that will express any given number in words? For example: If a number is 1432, then this …

php numbers words
Calculating frequency of each word in a sentence in java

I am writing a very basic java program that calculates frequency of each word in a sentence so far i …

java string extract words
Generating random words in Java?

I wrote up a program that can sort words and determine any anagrams. I want to generate an array of …

java arrays random words
Python regex for finding all words in a string

Hello I am new into regex and I'm starting out with python. I'm stuck at extracting all words from an …

python regex words sentence
Split sentence into words but having trouble with the punctuations in C#

I have seen a few similar questions but I am trying to achieve this. Given a string, str="The moon …

c# regex split words sentence