如何在大写字母中创建每个单词的第一个字符?
下面的示例演示如何将字符串中每个单词的第一个字母转换为大写字母使用toUpperCase(),appendTail()方法。
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Main {
public static void main(String[] args) {
String str = "this is a java test";
System.out.println(str);
StringBuffer stringbf = new StringBuffer();
Matcher m = Pattern.compile(
"([a-z])([a-z]*)", Pattern.CASE_INSENSITIVE).matcher(str);
while (m.find()) {
m.appendReplacement(
stringbf, m.group(1).toUpperCase() + m.group(2).toLowerCase());
}
System.out.println(m.appendTail(stringbf).toString());
}
}
上面的代码示例将产生以下结果。
this is a java test
This Is A Java Test