Category: Programming
-
Count words in C lang
Previously we showed how to count words in java.Now we will demonstrate how to count words in C lang. First, […]
-
Apache OpenNLP – Tokenization
Tokenization is a process of segmenting strings into smaller parts called tokens(say sub-strings). Usually, these tokens are words, numbers, or […]
-
NLP – Natural language processing
Natural Language Processing, or NLP, is broadly defined as the software automatically manipulating natural languages, like speech and text. One […]
-
English lemmatization
Lemmatization is the process of reducing an inflected spelling to its lexical root or lemma form. The lemma form is […]
-
Counting characters in Java
There are many ways for counting the number of characters in a String. Below a simple/naive approach:
-
Counting words in Java
This is a simple way to count words in a string in Java. StringTokenizer automatically takes care of whitespace for […]