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

  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. String Data Type – Programming 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.

  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 Data Type - Visual Basic | Microsoft Learn

    Sep 15, 2021 · Use the String data type to hold multiple characters without the array management overhead of Char(), an array of Char elements. The default value of String is Nothing (a null …

  6. C++ String Data Type - W3Schools

    The string type is used to store a sequence of characters (text). This is not a built-in type, but it behaves like one in its most basic usage. String values must be surrounded by double quotes: To use strings, …

  7. Basic Use of the string Data Type from the string Library

    2 days ago · There is a data type that can store "strings" of characters (like the literal "Hello World!" and others we've seen). This data type is called, oddly enough, string. It is not a built-in type (like short, …