About 2,120 results
Open links in new tab
  1. Java Strings - GeeksforGeeks

    Aug 3, 2026 · There are two ways to create a string in Java: 1. String literal (Static Memory) To make Java more memory efficient …

  2. Java Strings - W3Schools

    A String in Java is actually an object, which means it contains methods that can perform certain operations on strings. For example, …

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

  4. Creating Strings in Java: A Comprehensive Guide - javaspring.net

    Jan 16, 2026 · Understanding how to create and manipulate strings is essential for any Java developer. This blog post will provide a …

  5. Java String (With Examples) - Programiz

    In Java, a string is a sequence of characters. For example, "hello" is a string containing a sequence of characters 'h', 'e', 'l', 'l', and 'o'. …

  6. String Class in Java - GeeksforGeeks

    Apr 23, 2026 · The String class in Java represents a sequence of characters and is widely used for handling textual data. It provides …

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

  8. Java String Tutorial - HowToDoInJava

    Aug 15, 2024 · On this page, we will learn about creating strings with string literals and constructors, string methods and various …

  9. Java String - A Complete Guide (With Examples) - Intellipaat

    Oct 14, 2025 · This comprehensive guide to Java Strings covers everything you need to know, from the basics to advanced topics. …

  10. Java Strings - Tpoint Tech

    Jun 20, 2026 · You can create a string from a part of a character array using a special String constructor. You need to provide three …