About 2,390,000 results
Open links in new tab
  1. Python Strings - W3Schools

    Like many other popular programming languages, strings in Python are arrays of unicode characters. However, Python does not have a character data type, a single character is simply a …

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

    Constructs a new String by decoding the specified subarray of bytes using the specified charset.

  3. String - JavaScript | MDN - MDN Web Docs

    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 …

  4. Strings - C# | Microsoft Learn

    Learn about strings in C# programming. See information on declaring and initializing strings, the immutability of string objects, and string escape sequences.

  5. string — Common string operations — Python 3.14.0 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.

  6. Strings in C++ - GeeksforGeeks

    Sep 20, 2025 · Strings in C++ are objects of the std::string class. They are used to represent and manipulate sequences of characters. Unlike C-style character arrays (char []), std::string …

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

  8. Java String Reference - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

  9. C String Functions - GeeksforGeeks

    Jul 26, 2025 · This function appends not more than n characters from the string pointed to by source to the end of the string pointed to by destination plus a terminating NULL character.

  10. String (Java SE 17 & JDK 17) - Oracle

    If this String object represents an empty string, or if all characters in this string are white space, then an empty string is returned. Otherwise, returns a substring of this string beginning with the …