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

  2. String (computer science) - Wikipedia

    In computer programming, a string is traditionally a sequence of characters, either as a literal constant or as some kind of variable. The latter may allow its elements to be mutated and the length changed, or …

  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? - 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 …

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

  6. String - Glossary | MDN

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

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

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

    Strings allow developers to process, display, and manipulate textual information — from usernames and messages to API responses and configuration data. A string is a data structure that stores text in an …

  9. Programming - Strings - University of Utah

    Strings The technical description of a String is: an array of characters. The informal view of a string is a sentence. Strings are almost always written in code as a quoted sequence of characters, i.e., "this is …

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

    May 19, 2025 · Therefore, it is important for anyone interested in coding to ask: what is a string in programming? In simple terms, a string is a sequence of characters such as letters, numbers, or …