About 74,900 results
Open links in new tab
  1. JavaScript String substring () Method - W3Schools

    The substring () method extracts characters, between two indices (positions), from a string, and returns the substring. The substring …

  2. String.prototype.substring () - JavaScript - MDN

    Jul 10, 2025 · The substring () method of String values returns the part of this string from the start index up to and excluding the end …

  3. SUBSTRING (Transact-SQL) - SQL Server | Microsoft Learn

    Jul 20, 2026 · The SUBSTRING function returns a portion of a specified character, binary, text, or image expression.

  4. String.Substring Method (System) | Microsoft Learn

    You call the Substring (Int32, Int32) method to extract a substring from a string that begins at a specified character position and ends …

  5. SQL Server SUBSTRING () Function - W3Schools

    Definition and Usage The SUBSTRING () function extracts some characters from a string. Syntax SUBSTRING (string, start, length)

  6. Substring - Wikipedia

    A substring of a string is a prefix of a suffix of the string, and equivalently a suffix of a prefix; for example, nan is a prefix of nana, …

  7. JavaScript Substring (): Extract a Substring from a String

    In this tutorial, you'll learn how to use the JavaScript substring () method to extract a substring from a string.

  8. std::basic_string<CharT,Traits,Allocator>:: - cppreference.com

    Returns a substring [pos, pos + count). If the requested substring extends past the end of the string, i.e. the count is greater than …

  9. Substrings: A Comprehensive Guide - GeeksforGeeks

    Jul 23, 2025 · Definition: A substring is a contiguous sequence of characters within a larger string. It is essentially a smaller portion of …

  10. Java String substring () Method - GeeksforGeeks

    Apr 11, 2025 · In Java, the substring () method of the String class returns a substring from the given string. This method is most …