About 83,800,000 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. 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.

  3. Java - String Class - Online Tutorials Library

    In Java programming language, strings are treated as objects. The Java platform provides the String class to create and manipulate strings. The most direct way to create a string is to write −. String …

  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 Reference - W3Schools

    The String class has a set of built-in methods that you can use on strings. Returns the number of Unicode values found in a string. Compares two strings. Returns true if the strings are equal, and …

  6. String class - javaplanet.io

    Sep 2, 2025 · The String class in Java is one of the most widely used and important classes in Java programming. It represents a sequence of characters and is used for storing and manipulating text.

  7. Java - String Class: A Comprehensive Guide — javaspring.net

    The Java String class is a powerful and versatile tool for handling text in Java applications. Understanding its fundamental concepts, usage methods, common practices, and best practices is …

  8. Java Strings - Tpoint Tech

    Mar 17, 2025 · In Java, string is basically an object that represents sequence of char values. An array of characters works as a string in Java.

  9. String (computer science) - Wikipedia

    When a string appears literally in source code, it is known as a string literal or an anonymous string. [1] In formal languages, which are used in mathematical logic and theoretical computer science, a string …

  10. Understanding the Java String Class - developersground.com

    Apr 10, 2025 · Learn the Java String class with real-life examples explained in simple words. Understand memory storage, comparison methods, and immutability in a beginner-friendly format.