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.
私のStringBuilder:
StringBuilder
StringBuilder s = new StringBuilder();
そして出力:
s.toString() = "ABCDEFG"
頭の3文字だけ欲しい。「ABC」のように。これを行うには、どのコードを使用する必要がありますか?
ABC
String と StringBuilder の両方にsubstring()メソッドがあります。単に呼び出す:
substring()
s.substring(0, 3);