
String (Java Platform SE 8 ) - Oracle Help Center
String conversions are implemented through the method toString, defined by Object and inherited by all classes in Java. For additional information on string concatenation and conversion, see Gosling, Joy, …
String (Java SE 25 & JDK 25) - docs.oracle.com
String c = "abc".substring(2, 3); String d = cde.substring(1, 2); The class String includes methods for examining individual characters of the sequence, for comparing strings, for searching strings, for …
Strings (The Java™ Tutorials > Learning the Java Language - Oracle
Strings, which are widely used in Java programming, are a sequence of characters. In the Java programming language, strings are objects. The Java platform provides the String class to create …
: Class String - Oracle
The class String includes methods for examining individual characters of the sequence, for comparing strings, for searching strings, for extracting substrings, and for creating a copy of a string with all …
Summary of Characters and Strings (The Java™ Tutorials - Oracle
The String class also includes a number of utility methods, among them split(), toLowerCase(), toUpperCase(), and valueOf(). The latter method is indispensable in converting user input strings to …
Manipulating Characters in a String (The Java™ Tutorials - Oracle
The String class has a number of methods for examining the contents of strings, finding characters or substrings within a string, changing case, and other tasks. Getting Characters and Substrings by …
String (Java Platform SE 8 ) - Oracle
String d = cde.substring(1, 2); Stringクラスには、文字列のそれぞれの文字をテストするメソッドや、文字列の比較、文字列の検索、部分文字列の抽出、および文字をすべて大文字または小文字に変換し …
JDK 26 Documentation - Home
The documentation for JDK 26 includes developer guides, API documentation, and release notes.
Uses of Class java.lang.String (Java Platform SE 8 ) - Oracle
Uses of String in java.applet Methods in java.applet that return String Modifier and Type Method Description String Applet.getAppletInfo () Returns information about this applet. String …
String (Java SE 11 & JDK 11 ) - Oracle
Stringは、補助文字をサロゲート・ペアで表現するUTF-16形式の文字列を表します (詳細は、Characterクラスの「Unicode文字表現」セクションを参照)。 charコード単位を参照するインデッ …