About 2,520 results
Open links in new tab
  1. String (computer science) - Wikipedia

    String (computer science) 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 …

  2. What is String - Definition & Meaning - GeeksforGeeks

    Jul 23, 2025 · In Data Structures and Algorithms (DSA), a String can also be defined as a sequence of characters, stored in contiguous memory locations, terminated by a special character called the null …

  3. What is a String? - W3Schools

    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 either single quotes …

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

  5. String: Definition, Purpose, and Examples - mimo.org

    A string is a structured representation of text — ordered, indexable, and immutable. It’s one of the most universal data types, appearing in nearly every program, from command-line scripts to complex web …

  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. Computer Programming - Strings - Online Tutorials Library

    Most of the programming languages provide built-in functions to manipulate strings, i.e., you can concatenate strings, you can search from a string, you can extract sub-strings from a string, etc. For …

  8. What is a String in Programming: AP® CS Principles Review

    What is a string in programming? A string is a sequence of characters—letters, numbers, symbols—enclosed in quotation marks. Examples: “Hello” or “2024”. Strings are essential for …

  9. StringsProgramming Fundamentals

    Most current programming languages implement strings as a data type or class where strings are stored as a length controlled array. String length and storage are handled by the compiler or interpreter, …

  10. What does string mean in coding? - California Learning Resource …

    Jul 2, 2025 · At its core, a string is a sequence of characters. These characters are typically drawn from a defined character set, such as ASCII, UTF-8, or UTF-16, each offering varying levels of support for …