约 84,400 个结果
在新选项卡中打开链接
  1. JavaScript String substring () Method - W3Schools

    The substring() method extracts characters, between two indices (positions), from a string, and returns the substring. The substring() method extracts characters from start to end (exclusive).

  2. String.prototype.substring () - JavaScript | MDN - MDN Web Docs

    2025年7月10日 · The substring() method of String values returns the part of this string from the start index up to and excluding the end index, or to the end of the string if no end index is supplied.

  3. 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 ends at the end of the string. The starting character position is zero …

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

    2026年1月9日 · The SUBSTRING function returns a portion of a specified character, binary, text, or image expression.

  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 () - PowerShell cmdlet

    Substring () Return part of a longer string. Syntax . Substring( StartIndex [, length] ) Key StartIndex Characters to skip from the start of the string. Use 0 to start from the beginning of the string. Cannot …

  7. Substring - Wikipedia

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

  8. 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 exception is thrown for any reason, these functions have no …

  9. Java String substring () Method - GeeksforGeeks

    2025年4月11日 · In Java, the substring () method of the String class returns a substring from the given string. This method is most useful when you deal with text manipulation, parsing, or data extraction. …

  10. Substrings: A Comprehensive Guide - GeeksforGeeks

    2025年7月23日 · Substrings are a fundamental concept in computer science and programming. They play a crucial role in various applications, from text manipulation to data processing. In this blog post, …