我一直在使用 apache WordUtils 将字符串中的每个首字母大写,但我只需要将某些单词的首字母大写,而不是全部大写。这是我所拥有的:
import org.apache.commons.lang.WordUtils;
public class FirstCapitalLetter {
public static void main(String[] args) {
String str = "STATEMENT OF ACCOUNT FOR THE PERIOD OF";
str = WordUtils.capitalizeFully(str);
System.out.println(str);
}
}
我的输出是:
Statement Of Account For The Period Of
我希望我的输出是
Statement of Account for the Period of
我怎样才能做到这一点?