About 26,800,000 results
Open links in new tab
  1. What is String - Definition & Meaning - GeeksforGeeks

    Jul 23, 2025 · Applications of String: Strings are widely used in computer science and have many applications in various fields, some of which are: Text Processing: Strings are used to …

  2. What is a String? - W3Schools

    What is a String? 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 …

  3. String (computer science) - Wikipedia

    In formal languages, which are used in mathematical logic and theoretical computer science, a string is a finite sequence of symbols that are chosen from a set called an alphabet. A primary …

  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 …

  5. What is a String? - Computer Hope

    Sep 7, 2025 · Meaning of a string in computing, sequence of characters interpreted literally, and learn about its role across programming languages and binary utilities.

  6. What is a string? - Silverfin

    A string is a data type used in programming, that is used to represent text rather than numbers. A string is a sequence of characters and can contain letters, numbers, symbols and even spaces.

  7. What is a string in computer science? - California Learning …

    Jun 25, 2025 · Strings are a fundamental and ubiquitous data type in computer science. Understanding their properties, operations, and potential pitfalls is essential for developing …

  8. Introduction to Strings - Data Structure and Algorithm Tutorials

    Jul 23, 2025 · String Concatenation : String concatenation is the process of joining two or more strings together to form a single string. This is useful in text processing, formatting messages, …

  9. String in Data Structure - GeeksforGeeks

    Aug 31, 2025 · Strings are immutable in programming languages like Java, Python, JavaScript and C#. Many String Problems can optimized using the fact that the character set size is small.

  10. 2.1 What is a string? | C4T - Code 4 Tomorrow

    Declaration is when you tell the computer that the variable exists. In Java, you need to tell the computer what the type and name of the variable is. For example: String is the type of the …