This example show you how to capitalize a string. We use methods from WordUtils
class provided by the Apache commons-text;
. We can use the WordUtils.capitalize(str)
or WordUtils.capitalizeFully(str)
.
Let’s see an example below:
package org.kodejava.commons.text;
import org.apache.commons.text.WordUtils;
public class WordCapitalize {
public static void main(String[] args) {
// Capitalizes all the whitespace separated words in a string,
// only the first letter of each word is capitalized.
String str = WordUtils.capitalize(
"The quick brown fox JUMPS OVER the lazy dog.");
System.out.println("str = " + str);
// Capitalizes all the whitespace separated words in a string
// and the rest string to lowercase.
str = WordUtils.capitalizeFully(
"The quick brown fox JUMPS OVER the lazy dog.");
System.out.println("str = " + str);
}
}
And here are the result of the program:
str = The Quick Brown Fox JUMPS OVER The Lazy Dog.
str = The Quick Brown Fox Jumps Over The Lazy Dog.
Maven Dependencies
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.12.0</version>
</dependency>
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024