About 81,600 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 - MDN Web Docs

    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

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

  4. SQL Server SUBSTRING () Function - W3Schools

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

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

    The starting character position is zero-based; in other words, the first character in the string is at index 0, not index 1. To extract a …

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

  7. Substring - Wikipedia

    In formal language theory and computer science, a substring is a contiguous sequence of characters within a string. For instance, " …

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

  9. String.prototype.substring () - JavaScript | MDN

    Jun 27, 2017 · The substring () method returns a subset of a string between one index and another, or through the end of the string.

  10. JavaScript substring() Method: Complete Guide with Examples

    Apr 3, 2026 · JavaScript's substring () method extracts characters between two index positions in a string and returns the result as a …