Click or drag to resize

FortranLibSubstring(Char, Int32, Int32) Method

Retrieves a substring between two character positions.

Namespace: Altaxo.Calc.Ode.Obsolete
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static char[] Substring(
	char[] s,
	int startIndex,
	int lastIndex
)

Parameters

s  Char
The source character array.
startIndex  Int32
The one-based start index of the substring.
lastIndex  Int32
The one-based inclusive end index of the substring.

Return Value

Char
A new character array containing the requested substring.
See Also