About 65,800,000 results
Open links in new tab
  1. What is String - Definition & Meaning - GeeksforGeeks

    Jul 23, 2025 · Ordered: Strings are ordered sequences of characters, where each character has a unique position in the string. Indexable: Strings can be indexed, meaning that individual characters …

  2. String (computer science) - Wikipedia

    Strings are typically made up of characters, and are often used to store human-readable data, such as words or sentences. In computer programming, a string is traditionally a sequence of characters, …

  3. String Definition - What is a string in computer programming?

    Dec 18, 2024 · In computer science, a string is a fundamental data type used to represent text, as opposed to numeric data types like integers or floating-point numbers. It contains a sequence or …

  4. What is a string in computer science? - California Learning Resource ...

    Jun 25, 2025 · In computer science, a string is an immutable sequence of characters, representing textual data. It’s a fundamental data type present in virtually every programming language and forms …

  5. What is a String? - W3Schools

    What is a String? A string is a sequence of characters, usually used to represent text such as words or sentences. Strings are one of the most common data types in programming, and are enclosed in …

  6. What Is a String? - Computer Hope

    Nov 26, 2025 · A string is any series of characters that are interpreted literally by a script. For example, both "hello world" and "LKJH019283" are quotes containing strings, even though one is a phrase and …

  7. String - Glossary | MDN

    Jul 11, 2025 · In any computer programming language, a string is a sequence of characters used to represent text.

  8. String - definition of string by The Free Dictionary

    Material made of drawn-out, twisted fiber, used for fastening, tying, or lacing. b. A strand or cord of such material. 2. Music. a. A cord stretched on an instrument and struck, plucked, or bowed to produce …

  9. StringsProgramming Fundamentals

    A string is generally considered a data type and is often implemented as an array data structure of bytes (or words) that stores a sequence of elements, typically characters, using some character encoding.

  10. What is a String (in programming) – Tuple

    Strings are not just static collections of characters; they are versatile and can undergo various operations. Let's dive into some of the most common string operations.