About 695,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 …

  2. Java String Methods - 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, …

  3. String Class in Java - GeeksforGeeks

    May 1, 2025 · In this article, we are going to learn about the String class in Java. Example of String Class in Java: Explanation: The above program creates a string using a literal and prints …

  4. Java All String Class Methods with Examples - Java Guides

    In this guide, we will explore all Java String class methods with examples, covering the methods available up to Java 21. We will continue to update this guide with new String class methods …

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

    Oct 25, 2019 · Java String Methods List. A brief introduction to the various methods present in the Java String class. Java String functions examples.

  6. JavaString Class and Methods with examples - BeginnersBook

    Oct 25, 2022 · In this tutorial we will learn about String class and String methods with examples. There are two ways to create a String in Java. 1. String literal. A string literal is a sequence of …

  7. Java String Class Methods with Examples - First Code School

    May 1, 2024 · These methods include substring extraction, concatenation, comparison, searching, and modification. Understanding these methods is essential for effective string manipulation in …

  8. Java String Methods - Programiz

    In this reference page, you will find all the string methods available in Java. For example, if you need to find the length of a string, use the length () method. Splits the string at the specified …

  9. Java String Methods Tutorial With Examples - Software Testing …

    Apr 1, 2025 · Java supports different methods for String Manipulation. In the next section, we will cover all the important string methods along with a brief description of each of them. Java …

  10. Java 8 - The String Class

    In our first lesson of this section we learn all about the predefined String object. We look at string immutability, creation and efficiency before finishing the lesson by looking at some of the …