StringSegmentSubstring(Int32) Method
Gets a new
StringSegment instance, which represents a substring of the current instance with the specified
startIndex.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public StringSegment Substring(
int startIndex
)
Public Function Substring (
startIndex As Integer
) As StringSegment
public:
StringSegment Substring(
int startIndex
)
member Substring :
startIndex : int -> StringSegment
- startIndex Int32
- The offset that points to the first character of the returned segment.
StringSegmentThe subsegment of the current
StringSegment instance with the specified
startIndex.