Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: 最初の N 文字まで 「TITLE」という名前の変数を 40 文字だけに「トリム」する必要があります
Java: 文字列から余分な文字を制限/トリム/削除します。文字列変数の 40 文字より後の余分な文字を削除したいと考えています。
String shortString = longString.substring(0, Math.min(longString.length(), 40));
Stringクラスを詳しく見てみたいと思うかもしれません。