About 2,770,000 results
Open links in new tab
  1. String - JavaScript | MDN - MDN Web Docs

    Jul 10, 2025 · Some of the most-used operations on strings are to check their length, to build and concatenate them using the + and += string operators, checking for the existence or location of …

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

  4. STRING Definition & Meaning - Merriam-Webster

    The meaning of STRING is a cord usually used to bind, fasten, or tie —often used before another noun. How to use string in a sentence.

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

  6. String (Java Platform SE 8 ) - Oracle Help Center

    The class String includes methods for examining individual characters of the sequence, for comparing strings, for searching strings, for extracting substrings, and for creating a copy of a string with all …

  7. string — Common string operations — Python 3.14.2 documentation

    2 days ago · The Formatter class in the string module allows you to create and customize your own string formatting behaviors using the same implementation as the built-in format() method.

  8. std::basic_string - cppreference.com

    Apr 27, 2025 · The class template basic_string stores and manipulates sequences of character -like objects, which are non-array objects of TrivialType and StandardLayoutType. The class is dependent …

  9. JavaScript Strings - W3Schools

    Strings are for storing text. Strings are written with quotes. A JavaScript string is zero or more characters written inside quotes. You can use single or double quotes: Strings created with single or double …

  10. Strings - web.dev

    Mar 31, 2024 · Any set of characters—letters, numbers, symbols, and so on—between a set of either double quotation marks ("), single quotation marks ('), or backticks (`) is a string primitive.