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

  2. Strings in C - GeeksforGeeks

    Apr 24, 2025 · Below, the common methods of reading strings in C will be discussed, including how to handle whitespace, and concepts will be clarified to better understand how string input …

  3. String handling operations - Further programming language …

    It is usually possible to manipulate a string to provide information or to alter the contents of a string. Strings are shown in quotes (single or double), for example: 'Hello', or "World!".

  4. Basic String Operations with Implementation - GeeksforGeeks

    Oct 7, 2024 · In this post, we will look into some of the basic String operations such as: Accessing characters by index in a string. Inserting Character/String into an String. Concatenating strings …

  5. String Handling in Java - Online Tutorials Library

    Learn about string handling in Java, including various methods and techniques for manipulating strings effectively.

  6. Strings in C with Examples: String Functions - ScholarHat

    Jan 25, 2025 · Strings in C are used to store and work with text, represented as arrays of characters ending with a null character (\0). This article simplifies strings in C by explaining …

  7. String Manipulations In C Programming Using Library Functions

    All string manipulation can be done manually by the programmer but, this makes programming complex and large. To solve this, the C library supports a large number of string handling …

  8. Java Strings - W3Schools

    Strings are used for storing text. A String variable contains a collection of characters surrounded by double quotes: A String in Java is actually an object, which contain methods that can …

  9. Java String (With Examples) - Programiz

    Java provides various string methods to perform different operations on strings. We will look into some of the commonly used string operations. 1. Get the Length of a String. To find the length …

  10. Python Strings - Python Guides

    For very long strings, consider using multi-line strings; Remember that strings are immutable – operations create new strings rather than modifying existing ones; By mastering Python …

Refresh