About 355,000 results
Open links in new tab
  1. 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, …

  2. 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 …

  3. Java Strings - GeeksforGeeks

    May 6, 2025 · Java provides a robust and flexible API for handling strings, allowing for various operations such as concatenation, comparison, and manipulation. Example: String name = …

  4. Java String Methods - 27 String Functions You Must Know

    Oct 25, 2019 · Java String class has a lot of methods. There are many methods to get the characters of the string object. There are many methods to split the string into an array or to …

  5. String Functions In Java | Guide To Java String With Examples

    Jun 20, 2023 · Strings in Java are constant and created using a literal or keyword. String literal makes Java memory efficient, and the keyword creates a Java string in normal memory. The …

  6. Java String Methods with Examples - Java Guides

    The String class in Java is a part of the java.lang package and provides a way to represent and manipulate sequences of characters. Strings are widely used in Java programming, and …

  7. JavaString Class and Methods with examples - BeginnersBook

    Oct 25, 2022 · In java, string is an immutable object which means it is constant and can cannot be changed once it is created. In this tutorial we will learn about String class and String methods …

  8. Common String Operations in Java - Baeldung

    Jan 8, 2024 · String-based values and operations are quite common in everyday development, and any Java developer must be able to handle them. In this tutorial, we’ll provide a quick …

  9. String Class in Java - GeeksforGeeks

    May 1, 2025 · In Java, a String is the type of object that can store a sequence of characters enclosed by double quotes, and every character is stored in 16 bits, i.e., using UTF 16-bit …

  10. What is String in Java - Java String Methods & Type (Examples)

    What Is String In Java - .. A String in Java is used to store and work with text, like names, messages, or any written information. Unlike a simple group of characters, a String in Java is …

Refresh