About 72,600 results
Open links in new tab
  1. String (Java Platform SE 8 ) - Oracle Help Center

    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 …

  2. Java String Reference - W3Schools

    All String Methods The String class has a set of built-in methods that you can use on strings.

  3. String Class in Java - GeeksforGeeks

    Nov 12, 2025 · String is a predefined final class in Java present in java.lang package. It provides various methods to create, manipulate, and compare strings, like length (), charAt (), concat (), equals (), etc.

  4. Java String Class - Complete Tutorial with Examples - ZetCode

    Apr 13, 2025 · Complete Java String class tutorial covering all methods with examples. Learn about string manipulation, comparison, and other String class methods.

  5. Java String Tutorial - HowToDoInJava

    Aug 15, 2024 · Strings are of type java.lang.String class. On this page, we will learn about creating strings with string literals and constructors, string methods and various other examples related to …

  6. Java - Strings Class - Online Tutorials Library

    Description Strings, which are widely used in Java programming, are a sequence of characters. In Java programming language, strings are treated as objects. The Java platform provides the String class to …

  7. Mastering `java.lang.String` in Java - javaspring.net

    Nov 12, 2025 · In the Java programming language, java.lang.String is one of the most fundamental and widely used classes. It represents a sequence of characters and is immutable, meaning once a …

  8. Class java.lang.String - Columbia University

    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 …

  9. String - Wikibooks, open books for an open world

    Jun 28, 2024 · String is a class built into the Java language defined in the java.lang package. It represents character strings. Strings are ubiquitous in Java. Study the String class and its methods …

  10. String in Java: A Comprehensive Guide with All Methods

    Mar 26, 2025 · String is one of the most widely used classes in Java. It represents a sequence of characters and is...