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

    When a string appears literally in source code, it is known as a string literal or an anonymous string. [1] In formal languages, which are used in mathematical logic and theoretical computer …

  2. String - JavaScript | MDN

    Jul 10, 2025 · String literals can be specified using single or double quotes, which are treated identically, or using the backtick character `. This last form specifies a template literal: with this …

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

  4. Strings library - cppreference.com

    Jan 28, 2025 · The class template std::basic_string generalizes how sequences of characters are manipulated and stored. String creation, manipulation, and destruction are all handled by a …

  5. JavaScript String Methods - W3Schools

    The replaceAll() method allows you to specify a regular expression instead of a string to be replaced. If the parameter is a regular expression, the global flag (g) must be set, otherwise a …

  6. string — Common string operations — Python 3.14.2 …

    1 day 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.

  7. String in Data Structure - GeeksforGeeks

    Aug 31, 2025 · A string is a sequence of characters. The following facts make string an interesting data structure. Small set of elements. Unlike normal array, strings typically have smaller set of …

  8. The Beginner's Guide to JavaScript Strings By Examples

    To access the characters in a string, you use the array-like [] notation with the zero-based index. The following example returns the first character of a string with the index zero:

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

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

    String A string is a collection of characters ordered in a specific sequence. These characters can include letters, digits, punctuation marks, and whitespace. In most programming languages, …