About 80,100 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

    4 days ago · The SUBSTRING function returns a portion of a specified character, binary, text, or image expression.

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

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

  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 string is a substring (or factor) [1] of a string if there exists two strings and such that . In particular, the empty string is a substring of …

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

    Return value String containing the substring [pos, pos + count) or [pos, size ()). Exceptions std::out_of_range if pos > size(). If an …

  8. Substrings: A Comprehensive Guide - GeeksforGeeks

    Jul 23, 2025 · Substrings are a fundamental concept in computer science and programming. They play a crucial role in various …

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

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